From 818958abaf7ad4f86101f88e74caf688b23be9a3 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Wed, 10 Jul 2013 14:17:52 -0400 Subject: initial (non-working) implementation --- t/lib/Foo.pm | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 t/lib/Foo.pm (limited to 't/lib') 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; -- cgit v1.2.3-54-g00ecf