[t/spec] Add tricky tests (which pass after latest Rakudo patch), unfudge old simple...
[pugs.git] / t / 01-sanity / 07-ref.t
blob56e93ded6e16d47883adab1a27162339bb16a144
1 use v6;
4 say "1..3";
7     my $string = "Pugs";
8     if $string.WHAT eq Str { say "ok 1" } else { say "not ok 1" }
12     my $bool = ?1;
13     if $bool.WHAT eq Bool { say "ok 2" } else { say "not ok 2" }
17     my $bool = Bool::True;
18     if $bool.WHAT eq Bool { say "ok 3" } else { say "not ok 3" }