summaryrefslogtreecommitdiff
path: root/cpan/Module-Load-Conditional/t/to_load/NotAutoLoad.pm
diff options
context:
space:
mode:
Diffstat (limited to 'cpan/Module-Load-Conditional/t/to_load/NotAutoLoad.pm')
-rw-r--r--cpan/Module-Load-Conditional/t/to_load/NotAutoLoad.pm19
1 files changed, 19 insertions, 0 deletions
diff --git a/cpan/Module-Load-Conditional/t/to_load/NotAutoLoad.pm b/cpan/Module-Load-Conditional/t/to_load/NotAutoLoad.pm
new file mode 100644
index 0000000000..34642fb483
--- /dev/null
+++ b/cpan/Module-Load-Conditional/t/to_load/NotAutoLoad.pm
@@ -0,0 +1,19 @@
+package NotAutoLoad;
+
+use strict;
+use warnings;
+
+require Exporter;
+
+our @ISA = qw/Exporter/;
+our @EXPORT = qw/func3/;
+
+sub func3 {
+ return 1;
+}
+
+sub func4 {
+ return 1;
+}
+
+1;