summaryrefslogtreecommitdiffstats
path: root/t/basic.t
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2011-07-08 23:17:20 -0500
committerJesse Luehrs <doy@tozt.net>2011-07-08 23:18:08 -0500
commit64d9de92677b6ea344ab1c1e09fd71428120ef1d (patch)
tree3f961d336fa92c5e4c97c8c20781fad59cafe5d8 /t/basic.t
parent6c7d5e2e4024df3b3d0f54bab14909ddfcd478c0 (diff)
downloadsmartmatch-engine-rjbs-master.tar.gz
smartmatch-engine-rjbs-master.zip
split this into its own distHEADmaster
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;