summaryrefslogtreecommitdiffstats
path: root/t
diff options
context:
space:
mode:
Diffstat (limited to 't')
-rw-r--r--t/basic.t13
1 files changed, 13 insertions, 0 deletions
diff --git a/t/basic.t b/t/basic.t
new file mode 100644
index 0000000..0493862
--- /dev/null
+++ b/t/basic.t
@@ -0,0 +1,13 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use Test::More;
+
+ok(1 ~~ 1);
+{
+ use smartmatch sub { 0 };
+ ok(!(1 ~~ 1));
+}
+ok(1 ~~ 1);
+
+done_testing;