summaryrefslogtreecommitdiffstats
path: root/t/data
diff options
context:
space:
mode:
Diffstat (limited to 't/data')
-rw-r--r--t/data/basic/Baz/Quux.pm7
-rw-r--r--t/data/basic/Foo.pm7
-rw-r--r--t/data/basic/Foo/Bar.pm7
3 files changed, 21 insertions, 0 deletions
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;