Skip to content

Commit

Permalink
Add crude is() for spectest purposes
Browse files Browse the repository at this point in the history
  • Loading branch information
sorear committed Aug 4, 2010
1 parent b034cd5 commit 7beb95b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Test.pm6
Expand Up @@ -60,6 +60,7 @@ $GLOBAL::TEST-BUILDER = Builder.CREATE;
$GLOBAL::TEST-BUILDER.reset;

sub ok($bool, $tag) is export { $*TEST-BUILDER.ok($bool, $tag) }
sub is($a, $b, $tag) is export { $*TEST-BUILDER.ok($a eq $b, $tag) }
sub plan($num) is export { $*TEST-BUILDER.plan($num) }
sub done-testing() is export { $*TEST-BUILDER.done-testing }
sub done_testing() is export { $*TEST-BUILDER.done-testing }

0 comments on commit 7beb95b

Please sign in to comment.