test for use Moo after no Moo
Graham Knop [Tue, 18 Dec 2012 13:49:45 +0000 (08:49 -0500)]
t/use-after-no.t [new file with mode: 0644]

diff --git a/t/use-after-no.t b/t/use-after-no.t
new file mode 100644 (file)
index 0000000..5ced7df
--- /dev/null
@@ -0,0 +1,40 @@
+use strictures 1;
+use Test::More;
+
+ok eval q{
+  package Spoon;
+  use Moo;
+
+  has foo => ( is => 'ro' );
+
+  no Moo;
+
+  use Moo;
+
+  has foo2 => ( is => 'ro' );
+
+  no Moo;
+
+  1;
+}, "subs imported on 'use Moo;' after 'no Moo;'"
+    or diag $@;
+
+ok eval q{
+  package Roller;
+  use Moo;
+
+  has foo => ( is => 'ro' );
+
+  no Moo;
+
+  use Moo;
+
+  has foo2 => ( is => 'ro' );
+
+  no Moo;
+
+  1;
+}, "subs imported on 'use Moo::Role;' after 'no Moo::Role;'"
+    or diag $@;
+
+done_testing;