summaryrefslogtreecommitdiffstats
path: root/t
diff options
context:
space:
mode:
Diffstat (limited to 't')
-rw-r--r--t/02-version.t10
-rw-r--r--t/02/Foo.pm3
2 files changed, 13 insertions, 0 deletions
diff --git a/t/02-version.t b/t/02-version.t
new file mode 100644
index 0000000..ac3567b
--- /dev/null
+++ b/t/02-version.t
@@ -0,0 +1,10 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use lib 't/02';
+use Test::More;
+
+no circular::require;
+use_ok('Foo');
+
+done_testing;
diff --git a/t/02/Foo.pm b/t/02/Foo.pm
new file mode 100644
index 0000000..67de8a7
--- /dev/null
+++ b/t/02/Foo.pm
@@ -0,0 +1,3 @@
+package Foo;
+use 5.008001;
+1;