summaryrefslogtreecommitdiff
path: root/t/06_perlver.t
diff options
context:
space:
mode:
Diffstat (limited to 't/06_perlver.t')
-rw-r--r--t/06_perlver.t14
1 files changed, 14 insertions, 0 deletions
diff --git a/t/06_perlver.t b/t/06_perlver.t
new file mode 100644
index 0000000..9a253d1
--- /dev/null
+++ b/t/06_perlver.t
@@ -0,0 +1,14 @@
+BEGIN { $ENV{RELEASE_TESTING} = 0 };
+use strict;
+use warnings;
+use Test::More 'no_plan';
+use Test::Requires;
+
+test_requires '5.005';
+test_requires 'v5.5';
+pass 'should reach here';
+
+unless ($] > 5.998) {
+ test_requires '5.999';
+ fail 'do not reach here';
+}