Revert autogenerated tests. Tests should not changed radically.
[gitmo/Mouse.git] / t / 030_roles / 017_extending_role_attrs.t
similarity index 89%
rename from t-failing/030_roles/017_extending_role_attrs.t
rename to t/030_roles/017_extending_role_attrs.t
index c672ae9..79514c0 100644 (file)
@@ -1,16 +1,13 @@
 #!/usr/bin/perl
-# This is automatically generated by author/import-moose-test.pl.
-# DO NOT EDIT THIS FILE. ANY CHANGES WILL BE LOST!!!
-use t::lib::MooseCompat;
 
 use strict;
 use warnings;
 
-use Test::More;
-$TODO = q{Mouse is not yet completed};
+use Test::More tests => 27;
 use Test::Exception;
 
 
+
 =pod
 
 This basically just makes sure that using +name
@@ -176,16 +173,3 @@ is_deeply($quux->quux, ["hi"], "... still has the old ArrayRef value");
     } "or add new types to the union";
 }
 
-{
-    package Role::With::PlusAttr;
-    use Mouse::Role;
-
-    with 'Foo::Role';
-
-    ::throws_ok {
-        has '+bar' => ( is => 'ro' );
-    } qr/has '\+attr' is not supported in roles/,
-        "Test has '+attr' in roles explodes";
-}
-
-done_testing;