X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F030_roles%2F033_role_exclusion_and_alias_bug.t;h=097356bdf910122b456e7d92e81524204c6fdf77;hb=d03bd989b97597428b460d7f9a021e2931893fa0;hp=3fecf9dfa2caf4348064edb658f8e94641d22c6a;hpb=f6bee6fe1d579dc3d2ed2952cce9a1556040c8e5;p=gitmo%2FMoose.git diff --git a/t/030_roles/033_role_exclusion_and_alias_bug.t b/t/030_roles/033_role_exclusion_and_alias_bug.t index 3fecf9d..097356b 100644 --- a/t/030_roles/033_role_exclusion_and_alias_bug.t +++ b/t/030_roles/033_role_exclusion_and_alias_bug.t @@ -9,18 +9,18 @@ use Test::Moose; { package My::Role; use Moose::Role; - + sub foo { "FOO" } - sub bar { "BAR" } + sub bar { "BAR" } } { package My::Class; use Moose; - + with 'My::Role' => { alias => { foo => 'baz', bar => 'gorch' }, - excludes => ['foo', 'bar'], + excludes => ['foo', 'bar'], }; } @@ -40,15 +40,15 @@ use Test::Moose; { package My::Role::Again; use Moose::Role; - + with 'My::Role' => { alias => { foo => 'baz', bar => 'gorch' }, - excludes => ['foo', 'bar'], + excludes => ['foo', 'bar'], }; - + package My::Class::Again; use Moose; - + with 'My::Role::Again'; }