Resolve many 'failing' tests
[gitmo/Mouse.git] / t / 020_attributes / failing / 026_attribute_without_any_methods.t
diff --git a/t/020_attributes/failing/026_attribute_without_any_methods.t b/t/020_attributes/failing/026_attribute_without_any_methods.t
deleted file mode 100644 (file)
index ece05db..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/usr/bin/perl
-
-use strict;
-use warnings;
-
-use Test::More tests => 2;
-
-use Mouse ();
-use Mouse::Meta::Class;
-
-my $meta = Mouse::Meta::Class->create('Banana');
-
-my $warn;
-$SIG{__WARN__} = sub { $warn = "@_" };
-
-$meta->add_attribute('foo');
-like $warn, qr/Attribute \(foo\) of class Banana has no associated methods/,
-  'correct error message';
-
-$warn = '';
-$meta->add_attribute('bar', is => 'bare');
-is $warn, '', 'add attribute with no methods and is => "bare"';