Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
suppress warnings on stringified undefs
and mark [\^^] as working right, still need to fix [\xor] though
  • Loading branch information
TimToady committed May 9, 2015
1 parent 102b5b5 commit a336be6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions S03-metaops/reduce.t
Expand Up @@ -317,14 +317,14 @@ is( ([min] Any, Any, 2), 2, '[min] Any, Any, 2 returns 2');
}
}

#?rakudo todo 'triangle [\^^] and [\xor] RT #124515'
#?niecza skip '^^'
{
is (join ', ', [\^^] False, 0, 5, '', False, 16, 0, Any, "hello", False),
(join ', ', False, 0, 5, 5, 5, Nil, Nil, Nil, Nil, Nil),
is ([\^^] False, 0, 5, '', False, 16, 0, Any, "hello", False).gist,
'False 0 5 5 5 Nil Nil Nil Nil Nil',
'[\^^]';
is (join ', ', [\xor] 'xyzzy', Int, 0.0, '', False, 'plugh', 4, 2, 'xyzzy'),
(join ', ', 'xyzzy', 'xyzzy', 'xyzzy', 'xyzzy', 'xyzzy', Nil, Nil, Nil, Nil),
#?rakudo todo 'xor is list associative under triangle RT #124515'
is ([\xor] 'xyzzy', Int, 0.0, '', False, 'plugh', 4, 2, 'xyzzy').gist,
'xyzzy xyzzy xyzzy xyzzy xyzzy Nil Nil Nil Nil',
'[\xor]';
}

Expand Down

0 comments on commit a336be6

Please sign in to comment.