summaryrefslogtreecommitdiffstats
path: root/t/long_cycle
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2012-01-06 01:14:29 -0600
committerJesse Luehrs <doy@tozt.net>2012-01-06 01:15:25 -0600
commitd0719e8ad715588446409155d68fd1783486aa69 (patch)
tree71121b793602fba6ffad170dba646cc882bf4e3b /t/long_cycle
parentde76247745ea63176649888b4ef40be01ce3cd16 (diff)
downloadcircular-require-d0719e8ad715588446409155d68fd1783486aa69.tar.gz
circular-require-d0719e8ad715588446409155d68fd1783486aa69.zip
show the entire cycle in the warning0.06
Diffstat (limited to 't/long_cycle')
-rw-r--r--t/long_cycle/Bar.pm3
-rw-r--r--t/long_cycle/Baz.pm3
-rw-r--r--t/long_cycle/Blorg.pm3
-rw-r--r--t/long_cycle/Foo.pm3
-rw-r--r--t/long_cycle/Quux.pm3
5 files changed, 15 insertions, 0 deletions
diff --git a/t/long_cycle/Bar.pm b/t/long_cycle/Bar.pm
new file mode 100644
index 0000000..5d7209a
--- /dev/null
+++ b/t/long_cycle/Bar.pm
@@ -0,0 +1,3 @@
+package Bar;
+use Baz;
+1;
diff --git a/t/long_cycle/Baz.pm b/t/long_cycle/Baz.pm
new file mode 100644
index 0000000..0ece003
--- /dev/null
+++ b/t/long_cycle/Baz.pm
@@ -0,0 +1,3 @@
+package Baz;
+use Quux;
+1;
diff --git a/t/long_cycle/Blorg.pm b/t/long_cycle/Blorg.pm
new file mode 100644
index 0000000..d84c3fc
--- /dev/null
+++ b/t/long_cycle/Blorg.pm
@@ -0,0 +1,3 @@
+package Blorg;
+use Bar;
+1;
diff --git a/t/long_cycle/Foo.pm b/t/long_cycle/Foo.pm
new file mode 100644
index 0000000..1558402
--- /dev/null
+++ b/t/long_cycle/Foo.pm
@@ -0,0 +1,3 @@
+package Foo;
+use Bar;
+1;
diff --git a/t/long_cycle/Quux.pm b/t/long_cycle/Quux.pm
new file mode 100644
index 0000000..d0357d4
--- /dev/null
+++ b/t/long_cycle/Quux.pm
@@ -0,0 +1,3 @@
+package Quux;
+use Blorg;
+1;