Support is => 'bare' for compatibility
[gitmo/Mouse.git] / t / 029-new.t
index 4e642eb..fe660a1 100644 (file)
@@ -8,7 +8,9 @@ do {
     package Class;
     use Mouse;
 
-    has 'x';
+    has x => (
+        is => 'bare',
+    );
 
     has y => (
         is => 'ro',