summaryrefslogtreecommitdiffstats
path: root/t/lib/lexical.pl
diff options
context:
space:
mode:
Diffstat (limited to 't/lib/lexical.pl')
-rw-r--r--t/lib/lexical.pl8
1 files changed, 8 insertions, 0 deletions
diff --git a/t/lib/lexical.pl b/t/lib/lexical.pl
new file mode 100644
index 0000000..d004c3f
--- /dev/null
+++ b/t/lib/lexical.pl
@@ -0,0 +1,8 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+
+Test::More::ok(1 ~~ 1);
+Test::More::ok(!(1 ~~ 0));
+
+1;