File: symmetric_difference.t

package info (click to toggle)
libset-object-perl 1.42-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 620 kB
  • sloc: perl: 1,069; makefile: 14
file content (29 lines) | stat: -rw-r--r-- 634 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
use Set::Object;

require './t/object/Person.pm';
package Person;

populate();

$homer = $homer;
$patty = $patty;
$selma = $selma;

$simpsons = Set::Object->new($homer, $marge);
$bouviers = Set::Object->new($marge, $patty, $selma);
$trouble = Set::Object->new($homer, $patty, $selma);
$empty = Set::Object->new;

print "1..4\n";

print 'not ' unless $simpsons->symmetric_difference($bouviers) == $trouble;
print "ok 1\n";

print 'not ' unless $simpsons % $bouviers == $trouble;
print "ok 2\n";

print 'not ' unless $simpsons % $simpsons == $empty;
print "ok 3\n";

print 'not ' unless $simpsons % $empty == $simpsons;
print "ok 4\n";