summaryrefslogtreecommitdiffstats
path: root/t/basic.t
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2011-07-08 03:02:34 -0500
committerJesse Luehrs <doy@tozt.net>2011-07-08 03:02:34 -0500
commit6c7d5e2e4024df3b3d0f54bab14909ddfcd478c0 (patch)
tree8a907820e18d8304d06f9af34bd64fa37357146b /t/basic.t
parent046119999e010e4a38b67f5f194baaf60e7c8707 (diff)
downloadsmartmatch-engine-rjbs-6c7d5e2e4024df3b3d0f54bab14909ddfcd478c0.tar.gz
smartmatch-engine-rjbs-6c7d5e2e4024df3b3d0f54bab14909ddfcd478c0.zip
split core out into its own dist
Diffstat (limited to 't/basic.t')
-rw-r--r--t/basic.t6
1 files changed, 3 insertions, 3 deletions
diff --git a/t/basic.t b/t/basic.t
index 1de7d8f..421623a 100644
--- a/t/basic.t
+++ b/t/basic.t
@@ -12,9 +12,9 @@ ok(1 ~~ 1);
ok(1 ~~ 1);
{
- use smartmatch 'core';
- ok(1 ~~ 1);
- ok(!(1 ~~ 2));
+ use smartmatch 'rjbs';
+ ok([] ~~ qr/ARRAY/);
+ ok(!(1 ~~ sub { 0 }));
}
done_testing;