~ubuntu-branches/ubuntu/trusty/libmoosex-has-sugar-perl/trusty-proposed

« back to all changes in this revision

Viewing changes to t/lib/T4Values/DEverything.pm

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Yu
  • Date: 2010-10-04 19:42:43 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20101004194243-pbq4ccon2503ufj1
Tags: 0.05046611-1
* New upstream release
* Standards-Version 3.9.1 (no changes)
* Use new 3.0 (quilt) source format
* Update to new DEP5 copyright format
* Drop RELEASE_TESTING and related test dependencies

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package  T4Values::DEverything;
 
2
 
 
3
# $Id:$
 
4
use strict;
 
5
use warnings;
 
6
use MooseX::Has::Sugar;
 
7
use namespace::autoclean;
 
8
 
 
9
sub generated {
 
10
  {
 
11
    isa => 'Str',
 
12
    ro, required, lazy, lazy_build, coerce, weak_ref, auto_deref
 
13
  };
 
14
}
 
15
 
 
16
sub manual {
 
17
  {
 
18
    isa        => 'Str',
 
19
    is         => 'ro',
 
20
    required   => 1,
 
21
    lazy       => 1,
 
22
    lazy_build => 1,
 
23
    coerce     => 1,
 
24
    weak_ref   => 1,
 
25
    auto_deref => 1,
 
26
  };
 
27
}
 
28
 
 
29
1;
 
30