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