From 9cc8c0a89e3984a04758240a76940bb70f49f256 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Mon, 19 Dec 2011 14:06:16 -0600 Subject: remove test numbers --- t/basic/Bar.pm | 4 ++++ t/basic/Baz.pm | 4 ++++ t/basic/Foo.pm | 4 ++++ 3 files changed, 12 insertions(+) create mode 100644 t/basic/Bar.pm create mode 100644 t/basic/Baz.pm create mode 100644 t/basic/Foo.pm (limited to 't/basic') diff --git a/t/basic/Bar.pm b/t/basic/Bar.pm new file mode 100644 index 0000000..f7d7f72 --- /dev/null +++ b/t/basic/Bar.pm @@ -0,0 +1,4 @@ +package Bar; +use Baz; +sub quux { } +1; diff --git a/t/basic/Baz.pm b/t/basic/Baz.pm new file mode 100644 index 0000000..c70c7aa --- /dev/null +++ b/t/basic/Baz.pm @@ -0,0 +1,4 @@ +package Baz; +require Foo; +require Bar; +1; diff --git a/t/basic/Foo.pm b/t/basic/Foo.pm new file mode 100644 index 0000000..5e5d6c3 --- /dev/null +++ b/t/basic/Foo.pm @@ -0,0 +1,4 @@ +package Foo; +use Baz; +sub quux { } +1; -- cgit v1.2.3-54-g00ecf