X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F001_mouse%2F001-strict.t;fp=t%2F001_mouse%2F001-strict.t;h=0000000000000000000000000000000000000000;hb=0c5c3648c1cd9e2fb5ce6446a0f81fc944cf0829;hp=fb82c0e9f251f5969c457be2194318054f7b48b3;hpb=fbba35c6f2393c3a4744cef9ce63f78ba82ddbad;p=gitmo%2FMouse.git diff --git a/t/001_mouse/001-strict.t b/t/001_mouse/001-strict.t deleted file mode 100644 index fb82c0e..0000000 --- a/t/001_mouse/001-strict.t +++ /dev/null @@ -1,13 +0,0 @@ -#!/usr/bin/env perl -use Test::More tests => 1; -use Test::Exception; - -throws_ok { - package Class; - use Mouse; - - my $foo = '$foo'; - chop $$foo; -} qr/Can't use string \("\$foo"\) as a SCALAR ref while "strict refs" in use /, - 'using Mouse turns on strictures'; -