From d0719e8ad715588446409155d68fd1783486aa69 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Fri, 6 Jan 2012 01:14:29 -0600 Subject: show the entire cycle in the warning --- t/long_cycle/Bar.pm | 3 +++ t/long_cycle/Baz.pm | 3 +++ t/long_cycle/Blorg.pm | 3 +++ t/long_cycle/Foo.pm | 3 +++ t/long_cycle/Quux.pm | 3 +++ 5 files changed, 15 insertions(+) create mode 100644 t/long_cycle/Bar.pm create mode 100644 t/long_cycle/Baz.pm create mode 100644 t/long_cycle/Blorg.pm create mode 100644 t/long_cycle/Foo.pm create mode 100644 t/long_cycle/Quux.pm (limited to 't/long_cycle') 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; -- cgit v1.2.3-54-g00ecf