From 3669b3d498f2f6224b8dc8cdc8cfcca1c0165611 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Wed, 22 Jun 2011 12:02:03 -0500 Subject: initial implementation --- t/data/basic/Baz/Quux.pm | 7 +++++++ t/data/basic/Foo.pm | 7 +++++++ t/data/basic/Foo/Bar.pm | 7 +++++++ 3 files changed, 21 insertions(+) create mode 100644 t/data/basic/Baz/Quux.pm create mode 100644 t/data/basic/Foo.pm create mode 100644 t/data/basic/Foo/Bar.pm (limited to 't/data') diff --git a/t/data/basic/Baz/Quux.pm b/t/data/basic/Baz/Quux.pm new file mode 100644 index 0000000..14a0581 --- /dev/null +++ b/t/data/basic/Baz/Quux.pm @@ -0,0 +1,7 @@ +package Baz::Quux; +use strict; +use warnings; + +sub call { __PACKAGE__ } + +1; diff --git a/t/data/basic/Foo.pm b/t/data/basic/Foo.pm new file mode 100644 index 0000000..b817f30 --- /dev/null +++ b/t/data/basic/Foo.pm @@ -0,0 +1,7 @@ +package Foo; +use strict; +use warnings; + +sub call { __PACKAGE__ } + +1; diff --git a/t/data/basic/Foo/Bar.pm b/t/data/basic/Foo/Bar.pm new file mode 100644 index 0000000..1fab089 --- /dev/null +++ b/t/data/basic/Foo/Bar.pm @@ -0,0 +1,7 @@ +package Foo::Bar; +use strict; +use warnings; + +sub call { __PACKAGE__ } + +1; -- cgit v1.2.3-54-g00ecf