X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F001_basic.t;h=f83967aeb29abbc3e92ac228fe80899bb481b142;hb=5d492ebf7be74446a747c14eefd9e5068e6069b4;hp=3133f4a32c2a0fdd3cda11364d4e7a08adb76f2f;hpb=b9238462c9d0e46830c5bd0ce94771826c1079a4;p=gitmo%2FMoose-Policy.git diff --git a/t/001_basic.t b/t/001_basic.t index 3133f4a..f83967a 100644 --- a/t/001_basic.t +++ b/t/001_basic.t @@ -3,53 +3,64 @@ use strict; use warnings; -use Test::More tests => 1; +use Test::More; BEGIN { - use_ok('Moose::Policy'); + require Moose; + + plan skip_all => 'Moose::Policy does not work with recent versions of Moose' + if Moose->VERSION >= 1.05; + + plan tests => 11; + + use_ok('Moose::Policy'); } { package My::Moose::Meta::Attribute; use Moose; - + extends 'Moose::Meta::Attribute'; - - sub _process_options { + + # this method (mostly stolen from M::M::Attribute) just rebuilds the + # options so anything with 'is' gets PBP accessors + before '_process_options' => sub { my ($class, $name, $options) = @_; - if (exists $options->{is}) { - if ($options->{is} eq 'ro') { - $options->{reader} = 'get_' . $name; - } - elsif ($options->{is} eq 'rw') { - $options->{reader} = 'get_' . $name; - $options->{writer} = 'set_' . $name; - } - delete $options->{is}; - } - + if (exists $options->{is}) { + if ($options->{is} eq 'ro') { + $options->{reader} = 'get_' . $name; + } + elsif ($options->{is} eq 'rw') { + $options->{reader} = 'get_' . $name; + $options->{writer} = 'set_' . $name; + } + delete $options->{is}; + } + $class->SUPER::_process_options($name, $options); } } { package My::Moose::Policy; + # policy just specifies metaclass delegates use constant attribute_metaclass => 'My::Moose::Meta::Attribute'; } { package Foo; - + use Moose::Policy 'My::Moose::Policy'; use Moose; - - has 'bar' => (default => 'Foo::bar'); + + has 'bar' => (is => 'rw', default => 'Foo::bar'); + has 'baz' => (is => 'ro', default => 'Foo::baz'); } isa_ok(Foo->meta, 'Moose::Meta::Class'); is(Foo->meta->attribute_metaclass, 'My::Moose::Meta::Attribute', '... got our custom attr metaclass'); -isa_ok() +isa_ok(Foo->meta->get_attribute('bar'), 'My::Moose::Meta::Attribute'); my $foo = Foo->new; isa_ok($foo, 'Foo'); @@ -57,9 +68,10 @@ isa_ok($foo, 'Foo'); can_ok($foo, 'get_bar'); can_ok($foo, 'set_bar'); -is($foo->get_bar, 'Foo::bar', '... got the right default value'); - - - +can_ok($foo, 'get_baz'); +ok(! $foo->can('set_baz'), 'without setter'); +is($foo->get_bar, 'Foo::bar', '... got the right default value'); +is($foo->get_baz, 'Foo::baz', '... got the right default value'); +# vim:ts=4:sw=4:et:sta