Skip to content

Commit a95178f

Browse files
committed
Merge branch 'master' of github.com:perl6/roast
2 parents 92c0f96 + b07cd56 commit a95178f

File tree

10 files changed

+279
-3
lines changed

10 files changed

+279
-3
lines changed

S02-lexical-conventions/minimal-whitespace.t

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ my $o = Thing.new;
2626
eval_dies_ok('$o .whatever(5)', 'whitespace is not allowed before . before method');
2727
eval_dies_ok('$o. whatever(5)', 'whitespace is not allowed after . before method');
2828

29+
#?pugs skip "missing eval_lives_ok"
2930
eval_lives_ok 'my @rt80330; [+] @rt80330', 'a [+] with whitespace works';
3031
eval_dies_ok 'my @rt80330; [+]@rt80330', 'a [+] without whitespace dies';
3132

S02-types/unicode.t

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ is "foo\r\nbar".graphs, 7, 'CRLF is 1 graph';
1717
is $u.chars, 1, '.chars defaults to .graphs';
1818

1919
# RT #65170
20+
#?pugs todo
2021
{
2122
my $rt65170;
2223

S04-phasers/next.t

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ plan 13;
4545
NEXT { $str ~= 'n'; }
4646
LAST { $str ~= 'l'; }
4747
}
48+
#?pugs todo
4849
is $str, 'nnl', 'NEXT are LAST blocks may not be exclusive';
4950
}
5051

@@ -70,6 +71,7 @@ plan 13;
7071
leave if $_ > 3;
7172
}
7273
}
74+
#?pugs todo
7375
is $str, '123', "leave didn't trigger NEXT \{}";
7476
}
7577

@@ -103,6 +105,7 @@ plan 13;
103105
NEXT { $str ~= 'n' }
104106
LEAVE { $str ~= 'l' }
105107
}
108+
#?pugs todo
106109
is $str, 'nlnl', 'NEXT {} ran before LEAVE {} (1)';
107110
}
108111

@@ -113,6 +116,7 @@ plan 13;
113116
LEAVE { $str ~= 'l' }
114117
NEXT { $str ~= 'n' }
115118
}
119+
#?pugs todo
116120
is $str, 'nlnl', 'NEXT {} ran before LEAVE {} (2)';
117121
}
118122

@@ -129,6 +133,7 @@ plan 13;
129133
NEXT { $str ~= $n } # this gets run first (LIFO)
130134
last if $i++ > 100; # recursion prevension
131135
}
136+
#?pugs todo
132137
is $str, '01234', 'NEXT {} ran in reversed order';
133138
}
134139

@@ -147,6 +152,7 @@ plan 13;
147152
NEXT { $str ~= $_; }
148153
}
149154

155+
#?pugs todo
150156
is($str, '01234', 'NEXT {} works in for loop');
151157
}
152158

S05-mass/properties-derived.t

100755100644
Lines changed: 148 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)