Role tests are in a separate file
[gitmo/MooseX-SemiAffordanceAccessor.git] / t / basic.t
1 use strict;
2 use warnings;
3
4 use Test::More;
5
6 {
7
8     package Standard;
9
10     use Moose;
11
12     has 'thing'    => ( is => 'rw' );
13     has '_private' => ( is => 'rw' );
14 }
15
16 {
17
18     package SAA;
19
20     use Moose;
21     use MooseX::SemiAffordanceAccessor;
22
23     has 'thing'    => ( is => 'rw' );
24     has '_private' => ( is => 'rw' );
25 }
26
27 {
28
29     package SAA3;
30
31     use Moose;
32     use MooseX::SemiAffordanceAccessor;
33
34     has 'ro'     => ( is => 'ro' );
35     has 'thing'  => ( is => 'rw', reader => 'get_thing' );
36     has 'thing2' => ( is => 'rw', writer => 'set_it' );
37 }
38
39 {
40
41     package SAA4;
42
43     use Moose;
44     use MooseX::SemiAffordanceAccessor;
45
46     has bare => ( is => 'bare' );
47 }
48
49 ok( Standard->can('thing'),      'Standard->thing() exists' );
50 ok( !Standard->can('set_thing'), 'Standard->set_thing() does not exist' );
51 ok( Standard->can('_private'),   'Standard->_private() exists' );
52 ok( !Standard->can('_set_private'),
53     'Standard->_set_private() does not exist' );
54
55 ok( SAA->can('thing'),        'SAA->thing() exists' );
56 ok( SAA->can('set_thing'),    'SAA->set_thing() exists' );
57 ok( SAA->can('_private'),     'SAA->_private() exists' );
58 ok( SAA->can('_set_private'), 'SAA->_set_private() exists' );
59
60 ok( SAA3->can('ro'),          'SAA3->ro exists' );
61 ok( !SAA3->can('set_ro'),     'SAA3->set_ro does not exist' );
62 ok( SAA3->can('thing'),       'SAA3->thing exists' );
63 ok( !SAA3->can('set_thing'),  'SAA3->set_thing does not exist' );
64 ok( SAA3->can('thing2'),      'SAA3->thing2 exists' );
65 ok( !SAA3->can('set_thing2'), 'SAA3->set_thing2 does not exist' );
66 ok( SAA3->can('set_it'),      'SAA3->set_it does exist' );
67
68 ok( !SAA4->can('bare'),     'SAA4->bare does not exist' );
69 ok( !SAA4->can('set_bare'), 'SAA4->set_bare does not exist' );
70
71 done_testing();