From: Dave Rolsky Date: Thu, 4 Dec 2008 16:17:10 +0000 (+0000) Subject: Put some space between ok and { X-Git-Tag: 0.62_02~20 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=225f805f22bed93b8582508f9be008809cc8045d;p=gitmo%2FMoose.git Put some space between ok and { --- diff --git a/t/030_roles/004_role_composition_errors.t b/t/030_roles/004_role_composition_errors.t index d47eab3..0ad4331 100644 --- a/t/030_roles/004_role_composition_errors.t +++ b/t/030_roles/004_role_composition_errors.t @@ -28,7 +28,7 @@ is_deeply( package Foo::Class; use Moose; - ::dies_ok{ with('Foo::Role') } + ::dies_ok { with('Foo::Role') } '... no foo method implemented by Foo::Class'; } @@ -38,9 +38,9 @@ is_deeply( package Bar::Class; use Moose; - ::dies_ok{ with('Foo::Class') } + ::dies_ok { with('Foo::Class') } '... cannot consume a class, it must be a role'; - ::lives_ok{ with('Foo::Role') } + ::lives_ok { with('Foo::Role') } '... has a foo method implemented by Bar::Class'; sub foo {'Bar::Class::foo'} @@ -52,7 +52,7 @@ is_deeply( package Bar::Role; use Moose::Role; - ::lives_ok{ with('Foo::Role') } + ::lives_ok { with('Foo::Role') } '... has a foo method implemented by Bar::Role'; sub foo {'Bar::Role::foo'} @@ -70,7 +70,7 @@ is_deeply( package Baz::Role; use Moose::Role; - ::lives_ok{ with('Foo::Role') } + ::lives_ok { with('Foo::Role') } '... no foo method implemented by Baz::Role'; } @@ -86,7 +86,7 @@ is_deeply( package Baz::Class; use Moose; - ::dies_ok{ with('Baz::Role') } + ::dies_ok { with('Baz::Role') } '... no foo method implemented by Baz::Class2'; } @@ -96,7 +96,7 @@ is_deeply( package Baz::Class2; use Moose; - ::lives_ok{ with('Baz::Role') } + ::lives_ok { with('Baz::Role') } '... has a foo method implemented by Baz::Class2'; sub foo {'Baz::Class2::foo'}