[t/spec] Add tricky tests (which pass after latest Rakudo patch), unfudge old simple...
[pugs.git] / t / 01-sanity / 03-equal.t
blob5d21d37eb8f9291ed734b3f3707a5bf6132f5aa7
1 use v6;
3 # Checking that testing is sane: equality and inequality
6 say '1..4';
8 my $x = '0';
10 ($x eq $x) && say 'ok 1';
11 ($x ne $x) && say 'not ok 1';
12 ($x eq $x) || say 'not ok 2';
13 ($x ne $x) || say 'ok 2';
15 ($x == $x) && say 'ok 3';
16 ($x != $x) && say 'not ok 3';
17 ($x == $x) || say 'not ok 4';
18 ($x != $x) || say 'ok 4';