From: Shawn M Moore Date: Mon, 22 Dec 2008 04:00:38 +0000 (+0000) Subject: Need to specify package names X-Git-Tag: 0.19~81 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=475666e5b0caa50e870b29d537b6c868a7223ab8;p=gitmo%2FMouse.git Need to specify package names --- diff --git a/t/800_shikabased/008-create_class.t b/t/800_shikabased/008-create_class.t index 99143f3..6d6bad5 100644 --- a/t/800_shikabased/008-create_class.t +++ b/t/800_shikabased/008-create_class.t @@ -7,6 +7,7 @@ use Test::Exception; # error handling throws_ok { Mouse::Meta::Class->create( + "ClassName", superclasses => "foo" ); } qr/You must pass an ARRAY ref of superclasses/; @@ -14,12 +15,14 @@ throws_ok { throws_ok { Mouse::Meta::Class->create( + "ClassName", attributes => "foo" ); } qr/You must pass an ARRAY ref of attributes/; throws_ok { Mouse::Meta::Class->create( + "ClassName", methods => "foo" ); } qr/You must pass a HASH ref of methods/;