Remove useless load test and renumber other tests so this dir looks like other test...
[gitmo/Moose.git] / t / 070_native_traits / 010_array_from_role.t
diff --git a/t/070_native_traits/010_array_from_role.t b/t/070_native_traits/010_array_from_role.t
deleted file mode 100644 (file)
index 7f76c1a..0000000
+++ /dev/null
@@ -1,46 +0,0 @@
-#!/usr/bin/perl
-
-use strict;
-use warnings;
-
-use Test::More;
-use Test::Exception;
-
-{
-    package Foo;
-    use Moose;
-
-    has 'bar' => ( is => 'rw' );
-
-    package Stuffed::Role;
-    use Moose::Role;
-
-    has 'options' => (
-        traits => ['Array'],
-        is     => 'ro',
-        isa    => 'ArrayRef[Foo]',
-    );
-
-    package Bulkie::Role;
-    use Moose::Role;
-
-    has 'stuff' => (
-        traits  => ['Array'],
-        is      => 'ro',
-        isa     => 'ArrayRef',
-        handles => {
-            get_stuff => 'get',
-        }
-    );
-
-    package Stuff;
-    use Moose;
-
-    ::lives_ok{ with 'Stuffed::Role';
-        } '... this should work correctly';
-
-    ::lives_ok{ with 'Bulkie::Role';
-        } '... this should work correctly';
-}
-
-done_testing;