Skip to content

Commit

Permalink
Allow bare todos.
Browse files Browse the repository at this point in the history
  • Loading branch information
coke committed Sep 29, 2011
1 parent ac814f7 commit 8fdba33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Test.pm6
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ sub is_approx(Mu $got, Mu $expected, $desc = '') is export {
}
?$test;
}
sub todo($reason, $count = 1) is export { $*TEST-BUILDER.todo($reason, $count) }
sub todo($reason="", $count = 1) is export { $*TEST-BUILDER.todo($reason, $count) }
sub plan($num) is export { $*TEST-BUILDER.plan($num) }
sub done() is export { $*TEST-BUILDER.done }
sub skip($reason,$number) is export {
Expand Down

0 comments on commit 8fdba33

Please sign in to comment.