summaryrefslogtreecommitdiffstats
path: root/t
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2011-07-07 00:31:03 -0500
committerJesse Luehrs <doy@tozt.net>2011-07-07 00:31:03 -0500
commitd46ca6eacf7d512ac6d20dda977a4a33f9d4717c (patch)
treedb47ad2bbd9e8515ff292afa22966e04e424588c /t
parent4a1aaf32fde2658905f84ffb76708d7ffe53480f (diff)
downloadsmartmatch-engine-rjbs-d46ca6eacf7d512ac6d20dda977a4a33f9d4717c.tar.gz
smartmatch-engine-rjbs-d46ca6eacf7d512ac6d20dda977a4a33f9d4717c.zip
pure perl implementation of the core smartmatch algorithm
Diffstat (limited to 't')
-rw-r--r--t/basic.t5
1 files changed, 5 insertions, 0 deletions
diff --git a/t/basic.t b/t/basic.t
index 0493862..b7010e2 100644
--- a/t/basic.t
+++ b/t/basic.t
@@ -10,4 +10,9 @@ ok(1 ~~ 1);
}
ok(1 ~~ 1);
+{
+ use smartmatch 'core';
+ ok(1 ~~ 1);
+}
+
done_testing;