Resolve many 'failing' tests
[gitmo/Mouse.git] / t / 020_attributes / 026_attribute_without_any_methods.t
diff --git a/t/020_attributes/026_attribute_without_any_methods.t b/t/020_attributes/026_attribute_without_any_methods.t
new file mode 100644 (file)
index 0000000..0acf3c0
--- /dev/null
@@ -0,0 +1,22 @@
+#!/usr/bin/perl
+BEGIN{ $ENV{MOUSE_VERBOSE} = 1 }
+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"';