Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Unfudge set intersection tests
  • Loading branch information
lizmat committed Sep 9, 2013
1 parent 71befce commit 8a1cafb
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions S03-operators/set.t
Expand Up @@ -86,17 +86,13 @@ isa_ok ($ks (|) <blue green>), Set, "... and it's actually a Set (texas)";

# Intersection

#?rakudo todo 'huh?'
is showset($s $s), showset($s), "Set intersection with itself yields self";
isa_ok ($s $s), Set, "... and it's actually a Set";
#?rakudo todo 'huh?'
is showset($ks $ks), showset($ks), "KeySet intersection with itself yields self (as Set)";
isa_ok ($ks $ks), Set, "... and it's actually a Set";
#?rakudo todo 'huh?'
is showset($s $ks), showset(set <I'm afraid it>), "Set intersection with KeySet works";
isa_ok ($s $ks), Set, "... and it's actually a Set";

#?rakudo todo 'huh?'
is showset($s (&) $ks), showset(set <I'm afraid it>), "Set intersection with KeySet works (texas)";
isa_ok ($s (&) $ks), Set, "... and it's actually a Set (texas)";

Expand Down

0 comments on commit 8a1cafb

Please sign in to comment.