Move t/*/t into t/001_mouse
[gitmo/Mouse.git] / t / 046-meta-add_attribute.t
diff --git a/t/046-meta-add_attribute.t b/t/046-meta-add_attribute.t
deleted file mode 100644 (file)
index 67ce344..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-use strict;
-use warnings;
-use Test::More tests => 1;
-
-{
-    package Foo;
-    use Mouse;
-}
-Foo->meta->add_attribute(
-    'foo' => (
-        is => 'ro',
-        isa => 'Str',
-        default => 'bar',
-    )
-);
-is(Foo->new->foo, 'bar');