Skip to content

Commit

Permalink
Get tests all passing again.
Browse files Browse the repository at this point in the history
  • Loading branch information
colomon committed Sep 13, 2015
1 parent 3b002cb commit a0ed1f6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/Perl6/Literate.pm
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module Perl6::Literate;
unit module Perl6::Literate;

my regex empty { ^ \s* $ }

Expand Down
2 changes: 1 addition & 1 deletion t/01-comment-only.t
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ is Perl6::Literate::convert("A\nB\n\nC"),
"=begin Comment\nA\nB\n\nC\n=end Comment\n",
'a program consisting only of a comment gets converted into Pod';

done;
done-testing;
2 changes: 1 addition & 1 deletion t/02-program-code-only.t
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ is Perl6::Literate::convert(q[[[> my $a = "OH ";
say $a;]]],
'a program consisting only of code has all its ">" chars stripped';

done;
done-testing;
2 changes: 1 addition & 1 deletion t/03-code-comments-mixed.t
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ Here is some text.
say 'OH HAI';]]],
'comment and then code';

done;
done-testing;

0 comments on commit a0ed1f6

Please sign in to comment.