Skip to content

Commit 70fb660

Browse files
committed
[S32] fudge str/bool.t for niecza (issue 38)
1 parent e109c74 commit 70fb660

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

S32-str/bool.t

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,15 @@ nok ?'', "?'' is false";
66
isa_ok ?'', Bool, "?'' is Bool";
77
ok ?'hello', "?'hello' is true";
88
isa_ok ?'hello', Bool, "?'hello' is Bool";
9+
#?niecza skip '"0" should be False (issue 38)'
910
nok ?'0', "?'0' is false";
1011
isa_ok ?'0', Bool, "?'0' is Bool";
1112

1213
nok ''.Bool, "''.Bool is false";
1314
isa_ok ''.Bool, Bool, "''.Bool is Bool";
1415
ok 'hello'.Bool, "'hello'.Bool is true";
1516
isa_ok 'hello'.Bool, Bool, "'hello'.Bool is Bool";
17+
#?niecza skip '"0" should be False (issue 38)'
1618
nok '0'.Bool, "'0'.Bool is false";
1719
isa_ok '0'.Bool, Bool, "'0'.Bool is Bool";
1820

0 commit comments

Comments
 (0)