X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F500_test_moose%2F003_test_moose_has_attribute_ok.t;h=957ad33dcef77bf24b9168bcfc8c3492a4f41d86;hb=d03bd989b97597428b460d7f9a021e2931893fa0;hp=e8e38697ee2434a332b71f1e53396c54301c3889;hpb=f6bee6fe1d579dc3d2ed2952cce9a1556040c8e5;p=gitmo%2FMoose.git diff --git a/t/500_test_moose/003_test_moose_has_attribute_ok.t b/t/500_test_moose/003_test_moose_has_attribute_ok.t index e8e3869..957ad33 100644 --- a/t/500_test_moose/003_test_moose_has_attribute_ok.t +++ b/t/500_test_moose/003_test_moose_has_attribute_ok.t @@ -13,17 +13,17 @@ BEGIN { { package Foo; use Moose; - + has 'foo'; } { package Bar; use Moose; - + extends 'Foo'; - - has 'bar'; + + has 'bar'; }