Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
remove outdated tests for prefix abs
  • Loading branch information
moritz committed Jul 21, 2012
1 parent 25c7944 commit e7b4100
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions S03-operators/precedence.t
Expand Up @@ -13,7 +13,7 @@ proper separation of the two levels.
=end pod

plan 54;
plan 52;


# terms
Expand Down Expand Up @@ -85,11 +85,6 @@ ok(?(!(1 & 2 ^ 4) != 3), "blah blah blah");
eval_dies_ok 'my Mu $a = (1 ^ 2 | 3)', '^ and | may not associate';
};

#?pugs todo 'autothread, Mu'
{
my Mu $a = (abs -1 ^ -1); # read as abs(-1 ^ -1) -> (1^1)
ok(!($a == 1), 'junctive or binds more tightly then abs (1)');
}

#?pugs skip 'Mu'
{
Expand All @@ -99,10 +94,6 @@ ok(?(!(1 & 2 ^ 4) != 3), "blah blah blah");

# named unary

is((abs -1 .. 3), (1 .. 3), "abs binds tighter than ..");
#is((rand 3 <=> 5), -1, "rand binds tighter than <=>"); # XXX rand N is obsolete

# structural

ok(0 < 2 <=> 1 < 2, "0 < 2 <=> 1 < 2 means 0 < 1 < 2");

Expand Down

0 comments on commit e7b4100

Please sign in to comment.