X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMouse.git;a=blobdiff_plain;f=t%2F800_shikabased%2F008-create_class.t;h=76e5bcb99daa817232bc97242271889947b184b0;hp=687671e5fbc253723b584dde01f083ddffd018db;hb=7a1781ae4d22b7fd52894fc8cbbad2fe55e0295d;hpb=2104d773a545891714b80a4c598633bc08c36cb4 diff --git a/t/800_shikabased/008-create_class.t b/t/800_shikabased/008-create_class.t index 687671e..76e5bcb 100644 --- a/t/800_shikabased/008-create_class.t +++ b/t/800_shikabased/008-create_class.t @@ -1,7 +1,7 @@ use strict; use warnings; use Mouse (); -use Test::More tests => 20; +use Test::More tests => 19; use Test::Exception; # error handling @@ -27,11 +27,6 @@ throws_ok { ); } qr/You must pass a HASH ref of methods/; - -throws_ok { - Mouse::Meta::Class->create() -} qr/You must pass a package name/; - # normal cases isa_ok(Mouse::Meta::Class->create("FooBar"), "Mouse::Meta::Class"); is FooBar->meta->name, "FooBar";