summaryrefslogtreecommitdiffstats
path: root/t/lib/Foo.pm
diff options
context:
space:
mode:
Diffstat (limited to 't/lib/Foo.pm')
-rw-r--r--t/lib/Foo.pm11
1 files changed, 11 insertions, 0 deletions
diff --git a/t/lib/Foo.pm b/t/lib/Foo.pm
new file mode 100644
index 0000000..14521ad
--- /dev/null
+++ b/t/lib/Foo.pm
@@ -0,0 +1,11 @@
+package Foo;
+use strict;
+use warnings;
+
+use Exporter::Lexical;
+
+our @EXPORT = ('foo');
+
+sub foo { "FOO" }
+
+1;