Skip to content

Commit dc9f15f

Browse files
committed
Lots of niecza fudges.
1 parent 66bf9aa commit dc9f15f

File tree

7 files changed

+7
-0
lines changed

7 files changed

+7
-0
lines changed

S03-smartmatch/any-type.t

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ plan 15;
3535
# RT 76610
3636
{
3737
module M { };
38+
#?niecza todo "Unable to resolve method ACCEPTS in type M"
3839
lives_ok { 42 ~~ M }, '~~ module lives';
3940
ok not $/, '42 is not a module';
4041
}

S05-metasyntax/angle-brackets.t

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -284,6 +284,7 @@ character classes), and those are referenced at the correct spot.
284284
ok(!('foo123' ~~ /foo <(\d+)> bar/), 'non-matching <(...)>');
285285
286286
is('foo123bar' ~~ /foo <( bar || ....../, 'foo123', '<( in backtracking');
287+
#?niecza todo
287288
is('foo123bar' ~~ /foo <( 123 <( bar/, 'bar', 'multiple <(');
288289
is('foo123bar' ~~ /foo <( 123 [ <( xyz ]?/, '123', 'multiple <( backtracking');
289290
}

S06-signature/introspection.t

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,7 @@ sub j(*@i) {
132132
{
133133
sub xyz(|$c) {};
134134
is &xyz.signature.params[0].name, '$c' , '.name of |$c is "$c"';
135+
#?niecza todo "Does this test make sense?"
135136
is &xyz.signature.params[0].positional, False, '.positional on Capture param is False';
136137
is &xyz.signature.params[0].capture, True , '.capture on Capture param is True';
137138
is &xyz.signature.params[0].named, False, '.named on Capture param is True';

S12-attributes/clone.t

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ is($val2, 42, '... cloned object has proper attr value');
5454

5555
# RT 88254
5656
#?pugs todo
57+
#?niecza todo "Exception: Representation P6cursor does not support cloning"
5758
{
5859
my ($p, $q);
5960
$p = 'a' ~~ /$<foo>='a'/;

S12-class/inheritance.t

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,7 @@ eval_dies_ok 'class RT64642 is ::Nowhere {}', 'dies: class D is ::C {}';
174174

175175
# RT 75376
176176
#?pugs skip 'No such subroutine: "&RT75376::B"'
177+
#?niecza skip "Pathed definitions require our scope"
177178
{
178179
my class RT75376::A { };
179180
lives_ok { our class RT75376::B is RT75376::A { } },

S32-num/rat.t

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -304,6 +304,7 @@ is 241025348275725.3352.Rat.norm.nude, (301281685344656669, 1250), "Rat.Rat yiel
304304

305305
#RT #112822
306306
#?pugs skip 'No such method in class Rat: "&norm"'
307+
#?niecza todo 'got 241025348275725.31'
307308
is 241025348275725.3352.Str, "241025348275725.3352", 'stringification of bigish Rats';
308309

309310
done;

S32-str/substr.t

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -241,6 +241,7 @@ eval_dies_ok 'substr(Any, 0)', 'substr needs Cool as argument';
241241

242242
# RT 76682
243243
#?pugs skip 'Failure NYI'
244+
#?niecza skip "'Failure' used at line 244"
244245
{
245246
is "foo".substr(4), Failure, 'substr with start beyond end of string is Failure'
246247
}

0 commit comments

Comments
 (0)