From 6c7d5e2e4024df3b3d0f54bab14909ddfcd478c0 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Fri, 8 Jul 2011 03:02:34 -0500 Subject: split core out into its own dist --- t/basic.t | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 't/basic.t') 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; -- cgit v1.2.3