X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F800_shikabased%2F008-create_class.t;h=76e5bcb99daa817232bc97242271889947b184b0;hb=a09601ab6f3b4b6efb78d3f24a050fec92dcf02f;hp=687671e5fbc253723b584dde01f083ddffd018db;hpb=ad022aac12ce95ee336af9dde0758ae98037f3ab;p=gitmo%2FMouse.git 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";