Regenerate test files
[gitmo/Mouse.git] / t / 300_immutable / 101-immutable-default.t
diff --git a/t/300_immutable/101-immutable-default.t b/t/300_immutable/101-immutable-default.t
deleted file mode 100644 (file)
index 6fcbf2b..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-use strict;
-use warnings;
-
-use Test::More tests => 5;
-use Test::Exception;
-
-{
-    package Foo;
-    use Mouse;
-
-    #two checks because the inlined methods are different when
-    #there is a TC present.
-    has 'foos' => ( is => 'rw', default => 'DEFAULT' );
-    has 'bars' => ( is => 'rw', default => 300100 );
-    has 'bazs' => ( is => 'rw', default => sub { +{} } );
-
-}
-
-lives_ok { Foo->meta->make_immutable }
-    'Immutable meta with single BUILD';
-
-my $f = Foo->new;
-isa_ok $f, 'Foo';
-is $f->foos, 'DEFAULT', 'str default';
-is $f->bars, 300100, 'int default';
-is ref($f->bazs), 'HASH', 'code default';
-