We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85edce2 commit 423cc68Copy full SHA for 423cc68
S24-testing/3-output.t
@@ -7,7 +7,7 @@ use lib 't/spec/packages';
7
use Test;
8
use Test::Util;
9
10
-plan 5;
+plan 6;
11
12
# RT #115024
13
{
@@ -57,4 +57,15 @@ is_run 「
57
~ " # bass\n # miss\n # biss\n 1..1\nok 2 - meow\n") },
58
'descriptions with newlines get escaped from TAP with `#` at start of line';
59
60
+# https://irclog.perlgeek.de/perl6/2017-08-18#i_15038473
61
+is_run 「
62
+ use Test;
63
+ plan 2;
64
+ skip "meow # moo", 1;
65
+ skip 1;
66
+ 」,
67
+ { :err(''), :0status, :out("1..2\nok 1 - # SKIP meow \\# moo"
68
+ ~ "\nok 2 - # SKIP 1\n") },
69
+'skip() escapes `#` but not the `#` of SKIP marker itself';
70
+
71
# vim: expandtab shiftwidth=4 ft=perl6
0 commit comments