Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add test for RT #122882 - symmetric difference with 3+ args.
  • Loading branch information
pmichaud committed Oct 2, 2014
1 parent a9bfb14 commit afdcba5
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions S03-operators/set.t
Expand Up @@ -126,6 +126,10 @@ isa_ok ($s (^) $ks), Set, "... and it's actually a Set";
is showset($ks (^) $s), showset(set <is isn't your day>), "Set symmetric difference with SetHash is correct";
isa_ok ($ks (^) $s), Set, "... and it's actually a Set";

# RT #122882
is showset($s (^) $s (^) $s), showset(∅), "Set symmetric difference with 3+ args (RT #122882)";
is showset(<a b> (^) <b c> (^) <a d> (^) <a e>), showset(set <c d e>), "Set symmetric difference with 3+ args (RT #122882)";

# symmetric difference with Bag moved to bag.t

# is subset of
Expand Down

0 comments on commit afdcba5

Please sign in to comment.