X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F010_basics%2F010_method_modifier_with_regexp.t;h=64553f708f85e1955535a83743a9f7310dd53af1;hb=d03bd989b97597428b460d7f9a021e2931893fa0;hp=41f55cd56ede3840ece4e27b7e764010fc9ecca2;hpb=f6bee6fe1d579dc3d2ed2952cce9a1556040c8e5;p=gitmo%2FMoose.git diff --git a/t/010_basics/010_method_modifier_with_regexp.t b/t/010_basics/010_method_modifier_with_regexp.t index 41f55cd..64553f7 100644 --- a/t/010_basics/010_method_modifier_with_regexp.t +++ b/t/010_basics/010_method_modifier_with_regexp.t @@ -76,11 +76,11 @@ is( $Cat::AFTER_BARK_COUNTER, 2, 'after modifier is called twice' ); ::dies_ok { around qr/bark.*/ => sub {}; - } '... this is not currently supported'; - - ::dies_ok { + } '... this is not currently supported'; + + ::dies_ok { after qr/bark.*/ => sub {}; - } '... this is not currently supported'; + } '... this is not currently supported'; }