Skip to content

Commit

Permalink
Instead of testing Mu eqv Mu and Mu !eqv Any, test that infix:<eqv> a…
Browse files Browse the repository at this point in the history
…utothreads. (New test fudged for Rakudo.)
  • Loading branch information
colomon committed Feb 27, 2012
1 parent 52f6db6 commit ca66c90
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions S03-operators/eqv.t
@@ -1,7 +1,7 @@
use v6;
use Test;

plan 53;
plan 52;

# L<S03/Comparison semantics/Binary eqv tests equality much like === does>
# L<S32::Basics/Any/"=item eqv">
Expand Down Expand Up @@ -145,11 +145,14 @@ plan 53;
}

#?pugs skip "Mu"
#?DOES 3
#?DOES 1
{
is Mu eqv Mu, Bool::True, 'Mu eqv Mu';
is Any eqv Any, Bool::True, 'Any eqv Any';
is Any eqv Mu, Bool::False, 'Any !eqv Mu';
}

#?rakudo todo
{
ok 'a' eqv any <a b c>, "eqv autothreads correctly";
}

# RT #75322 - Rakudo used to be confused when lists began with ()
Expand Down

0 comments on commit ca66c90

Please sign in to comment.