From: Dave Rolsky Date: Wed, 2 Jul 2008 14:35:12 +0000 (+0000) Subject: Remove nothingmuch's nasty tabs ;) X-Git-Tag: 0_55~62 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=1344fd47a7ef94f27fb6535ce07a5c910716e326;p=gitmo%2FMoose.git Remove nothingmuch's nasty tabs ;) --- diff --git a/t/600_todo_tests/002_various_role_shit.t b/t/600_todo_tests/002_various_role_shit.t index 915cf7a..ea17eff 100644 --- a/t/600_todo_tests/002_various_role_shit.t +++ b/t/600_todo_tests/002_various_role_shit.t @@ -16,14 +16,14 @@ sub req_or_has ($$) { } } -{ - package Bar; - use Moose::Role; +{ + package Bar; + use Moose::Role; # this role eventually adds three methods, qw(foo bar xxy), but only one is # known when it's still a role - has foo => ( is => "rw" ); + has foo => ( is => "rw" ); has gorch => ( reader => "bar" ); @@ -94,10 +94,10 @@ sub req_or_has ($$) { ::lives_ok { with qw(Dancer::Robot) }; } - package Foo; - use Moose; + package Foo; + use Moose; - with qw(Bar); + with qw(Bar); has oink => ( is => "rw", @@ -112,7 +112,7 @@ sub req_or_has ($$) { default => sub { Dancer::Ballerina->new }, ); - sub foo { 42 } + sub foo { 42 } sub bar { 33 }