1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
#!/usr/bin/perl
use strict;
use warnings;
use Test::More;
use Test::Moose 'does_ok';
{
package MyHomePage;
use Moose;
has 'counter' => (
traits => ['Counter'],
is => 'ro',
isa => 'Int',
default => 0,
handles => {
inc_counter => 'inc',
dec_counter => 'dec',
reset_counter => 'reset',
set_counter => 'set'
}
);
}
my $page = MyHomePage->new();
isa_ok( $page, 'MyHomePage' );
can_ok( $page, $_ ) for qw[
dec_counter
inc_counter
reset_counter
set_counter
];
is( $page->counter, 0, '... got the default value' );
$page->inc_counter;
is( $page->counter, 1, '... got the incremented value' );
$page->inc_counter;
is( $page->counter, 2, '... got the incremented value (again)' );
$page->dec_counter;
is( $page->counter, 1, '... got the decremented value' );
$page->reset_counter;
is( $page->counter, 0, '... got the original value' );
$page->set_counter(5);
is( $page->counter, 5, '... set the value' );
$page->inc_counter(2);
is( $page->counter, 7, '... increment by arg' );
$page->dec_counter(5);
is( $page->counter, 2, '... decrement by arg' );
# check the meta ..
my $counter = $page->meta->get_attribute('counter');
does_ok( $counter, 'Moose::Meta::Attribute::Native::Trait::Counter' );
is( $counter->type_constraint->name, 'Int',
'... got the expected type constraint' );
is_deeply(
$counter->handles,
{
inc_counter => 'inc',
dec_counter => 'dec',
reset_counter => 'reset',
set_counter => 'set'
},
'... got the right handles methods'
);
done_testing;
|