Skip to content

Commit

Permalink
Fudge failing tests
Browse files Browse the repository at this point in the history
Not sure there's any point in fixing this, since it's not part of the
language and we already got `dd` and language-wise we got `.perl`
  • Loading branch information
zoffixznet committed Oct 7, 2017
1 parent 6757f93 commit 0d5bb90
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions t/02-rakudo/dump.t
Expand Up @@ -19,6 +19,7 @@ is DUMP(Duration), Duration.perl, 'DUMP(:U) is .perl (Duration)';
is DUMP(Instant), Instant.perl, 'DUMP(:U) is .perl (Instant)';

# Defined booleans DUMP as .Str
todo 'NYI', 2;
is DUMP(False), False.Str, 'DUMP(Bool:D) is .Str (False)';
is DUMP(True), True.Str, 'DUMP(Bool:D) is .Str (True)';

Expand Down Expand Up @@ -59,6 +60,7 @@ my int $int = 42;
my num $num = 12345e0;
my str $str = 'a string';

todo 'NYI (can it even?)', 3;
is DUMP($int), DUMP(42), 'DUMP(int) dumps as a literal';
is DUMP($num), DUMP(12345e0), 'DUMP(num) dumps as a literal';
is DUMP($str), DUMP('a string'), 'DUMP(str) dumps as a literal';

0 comments on commit 0d5bb90

Please sign in to comment.