summaryrefslogtreecommitdiffstats
path: root/t/build_exporter.t
diff options
context:
space:
mode:
Diffstat (limited to 't/build_exporter.t')
-rw-r--r--t/build_exporter.t17
1 files changed, 17 insertions, 0 deletions
diff --git a/t/build_exporter.t b/t/build_exporter.t
new file mode 100644
index 0000000..621e2aa
--- /dev/null
+++ b/t/build_exporter.t
@@ -0,0 +1,17 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use Test::More;
+use lib 't/lib';
+
+sub bar { 'bar' }
+
+is(bar(), "bar");
+{
+ use Bar;
+ is(bar(), "BAR");
+ is($Bar::imported, 1);
+}
+is(bar(), "bar");
+
+done_testing;