X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F030_roles%2F014_more_alias_and_exclude.t;h=1bba604657a6097956443e2d3d6b434062ca4701;hb=06d16be025b59d5bb71c237c6ab27c6053c2b615;hp=3fce48d66afd17786610d54a9d999329b0e739ca;hpb=28412c0b280c30cfd1eac1579b9f5953b5e1850e;p=gitmo%2FMoose.git diff --git a/t/030_roles/014_more_alias_and_exclude.t b/t/030_roles/014_more_alias_and_exclude.t index 3fce48d..1bba604 100644 --- a/t/030_roles/014_more_alias_and_exclude.t +++ b/t/030_roles/014_more_alias_and_exclude.t @@ -3,56 +3,53 @@ use strict; use warnings; -use Test::More tests => 10; +use Test::More; use Test::Exception; -BEGIN { - use_ok('Moose'); -} { package Foo; use Moose::Role; - + sub foo { 'Foo::foo' } sub bar { 'Foo::bar' } sub baz { 'Foo::baz' } - sub gorch { 'Foo::gorch' } - + sub gorch { 'Foo::gorch' } + package Bar; use Moose::Role; sub foo { 'Bar::foo' } sub bar { 'Bar::bar' } sub baz { 'Bar::baz' } - sub gorch { 'Bar::gorch' } + sub gorch { 'Bar::gorch' } package Baz; use Moose::Role; - + sub foo { 'Baz::foo' } sub bar { 'Baz::bar' } sub baz { 'Baz::baz' } - sub gorch { 'Baz::gorch' } - + sub gorch { 'Baz::gorch' } + package Gorch; use Moose::Role; - + sub foo { 'Gorch::foo' } sub bar { 'Gorch::bar' } sub baz { 'Gorch::baz' } - sub gorch { 'Gorch::gorch' } + sub gorch { 'Gorch::gorch' } } { package My::Class; use Moose; - + ::lives_ok { - with 'Foo' => { excludes => [qw/bar baz gorch/], alias => { gorch => 'foo_gorch' } }, - 'Bar' => { excludes => [qw/foo baz gorch/] }, - 'Baz' => { excludes => [qw/foo bar gorch/], alias => { foo => 'baz_foo', bar => 'baz_bar' } }, - 'Gorch' => { excludes => [qw/foo bar baz/] }; + with 'Foo' => { -excludes => [qw/bar baz gorch/], -alias => { gorch => 'foo_gorch' } }, + 'Bar' => { -excludes => [qw/foo baz gorch/] }, + 'Baz' => { -excludes => [qw/foo bar gorch/], -alias => { foo => 'baz_foo', bar => 'baz_bar' } }, + 'Gorch' => { -excludes => [qw/foo bar baz/] }; } '... everything works out all right'; } @@ -68,7 +65,4 @@ is($c->foo_gorch, 'Foo::gorch', '... got the right method'); is($c->baz_foo, 'Baz::foo', '... got the right method'); is($c->baz_bar, 'Baz::bar', '... got the right method'); - - - - +done_testing;