Skip to content

Commit fe84061

Browse files
committed
Test Bool.perl
1 parent 6242705 commit fe84061

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

S02-types/bool.t

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use v6;
22
use Test;
3-
plan 49;
3+
plan 51;
44

55
#L<S12/Built-in Enumerations/"Two built-in enumerations are">
66

@@ -50,7 +50,8 @@ is Bool::True.Str, 'True', 'True.Str';
5050
is Bool::False.Str, 'False', 'False.Str';
5151
is Bool::True.gist, 'Bool::True', 'True.gist';
5252
is Bool::False.gist, 'Bool::False', 'False.gist';
53-
53+
is Bool::True.perl, 'Bool::True', 'True.perl';
54+
is Bool::False.perl, 'Bool::False', 'False.perl';
5455

5556
# numification - interaction with +
5657
#?niecza 2 skip "Numeric"

0 commit comments

Comments
 (0)