Skip to content

Commit b05a6c1

Browse files
committed
Unfudge suprisingly few tests that depended on value-type === for niecza
1 parent a97dc2a commit b05a6c1

File tree

4 files changed

+0
-6
lines changed

4 files changed

+0
-6
lines changed

S03-operators/value_equivalence.t

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ plan 74;
2020
{
2121
ok (1 === 1), "=== on values (1)";
2222
ok (0 === 0), "=== on values (2)";
23-
#?niecza todo
2423
ok (1 + 1 === 2), '=== on non-literal values';
2524
ok !(0 === 1), "=== on values (3)";
2625
isa_ok (1 === 1), Bool, "=== on values (4)";
@@ -33,7 +32,6 @@ plan 74;
3332

3433
# more value tests
3534
{
36-
#?niecza todo
3735
ok 1/2 === 1/2, "=== on Rats";
3836
ok 1/2 !=== 3/2, "!=== on Rats";
3937
isa_ok 1/2 === 1/2, Bool, "=== on Rats yields Bool";
@@ -177,7 +175,6 @@ plan 74;
177175
ok (1 !=== "1"), '!=== on values (1 !=== "1")';
178176
}
179177

180-
#?niecza todo '=== on value types'
181178
ok 1|2 === 1, '=== does autothread (1)';
182179
isa_ok 1|2 === 1, Junction, '=== does autothread (2)';
183180

S32-num/fatrat.t

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,6 @@ isa_ok (1/2).FatRat, FatRat, '... and actually returns a FatRat';
175175
ok (1/2R) == (1/2R).FatRat, 'FatRat.FatRat works';
176176
isa_ok (1/2R).FatRat, FatRat, '... and actually returns a FatRat';
177177

178-
#?niecza todo
179178
ok 1/2R === 1/2R, 'FatRats are value types, so 1/2R === 1/2R';
180179
ok 1/2R !=== 1/3R, '=== with false outcome';
181180

S32-num/rat.t

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,6 @@ isa_ok (424/61731) / (61733/61731), Rat, "424/61731 / 61733/61731 is a Rat";
216216
ok (1/2) == (1/2).Rat, 'Rat.Rat works';
217217
isa_ok (1/2).Rat, Rat, '... and actually returns a Rat';
218218

219-
#?niecza todo
220219
ok 1/2 === 1/2, 'Rats are value types, so 1/2 === 1/2';
221220
ok 1/2 !=== 1/3, '=== with false outcome';
222221

integration/99problems-01-to-10.t

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,6 @@ plan 22;
143143
multi compress2 ($x, $y, *@xs) { $x xx ($x !=== $y), compress2($y, |@xs) }
144144

145145
my @x = <a a a a b c c a a d e e e e>;
146-
#?niecza todo 'WHICH'
147146
is compress2(|@x), <a b c a d e>, '... even with multi subs';
148147
}
149148

0 commit comments

Comments
 (0)