Support is => 'bare' for compatibility
[gitmo/Mouse.git] / t / 010-required.t
index 161717c..e6a6990 100644 (file)
@@ -9,15 +9,18 @@ do {
     use Mouse;
 
     has foo => (
+        is => 'bare',
         required => 1,
     );
 
     has bar => (
+        is => 'bare',
         required => 1,
         default => 50,
     );
 
     has baz => (
+        is => 'bare',
         required => 1,
         default => sub { 10 },
     );