Skip to content

Commit 33818a0

Browse files
committed
Add some descriptions
1 parent 993eb27 commit 33818a0

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

β€Žintegration/advent2013-day07.t

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ use Test;
33
plan 6;
44

55
# U+2286 SUBSET OF OR EQUAL TO
6-
only sub infix:<<"\x2286">>($a, $b --> Bool) {
7-
$a (<=) $b;
8-
}
6+
only sub infix:<<"\x2286">>($a, $b --> Bool) {
7+
$a (<=) $b;
8+
}
99

10-
is(set( <a b c> ) βŠ† set( <a b c d> ), True);
11-
is(set( <a b c d> ) βŠ† set( <a b c> ), False);
12-
is(<a b c> βŠ† <a b d>, False);
10+
is set( <a b c> ) βŠ† set( <a b c d> ), True, 'a b c βŠ† a b c d';
11+
is set( <a b c d> ) βŠ† set( <a b c> ), False, 'a b c d βŠ† a b c';
12+
is <a b c> βŠ† <a b d>, False, 'a b c βŠ† a b d';
1313

1414
# in the advent article, it returned False. Since then, S07:55
1515
#
@@ -18,7 +18,7 @@ is(<a b c> βŠ† <a b d>, False);
1818
#
1919
# is interpreted in such a way that Parcels have become value based,
2020
# and that means that this test should return True
21-
is(<a b c> === <a b c>, True);
21+
is <a b c> === <a b c>, True, 'a b c === a b c';
2222

23-
is(<a b c> eqv <a b c>, True);
24-
is(set(<a b c>).WHICH, 'Set|Str|a Str|b Str|c');
23+
is <a b c> eqv <a b c>, True, 'a b c eqv a b c';
24+
is set(<a b c>).WHICH, 'Set|Str|a Str|b Str|c', 'is .WHICH what we expect';

0 commit comments

Comments
Β (0)