Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
remove more outdated === tests
  • Loading branch information
moritz committed Oct 2, 2011
1 parent fe02f96 commit 23dd35a
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions S03-junctions/misc.t
Expand Up @@ -2,7 +2,7 @@ use v6;

use Test;

plan 102;
plan 99;

=begin pod
Expand Down Expand Up @@ -65,10 +65,6 @@ sub jok(Mu $condition, $msg?) { ok ?($condition), $msg };
jok('b' eq ($a | $b | $c), 'junction of ($a | $b | $c) matches at least one "b"');
jok('c' eq ($c | $a | $b), 'junction of ($c | $a | $b) matches at least one "c"');

#?niecza 3 skip '==='
ok(not(('a' eq ($b | $c | $a)) === Bool::False), 'junctional comparison doesn not mistakenly return both true and false');
ok(not(('b' eq ($a | $b | $c)) === Bool::False), 'junctional comparison doesn not mistakenly return both true and false');
ok(not(('c' eq ($c | $a | $b)) === Bool::False), 'junctional comparison doesn not mistakenly return both true and false');

# test junction to junction
#?rakudo skip 'nom regression'
Expand Down

0 comments on commit 23dd35a

Please sign in to comment.