We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e109c74 commit 70fb660Copy full SHA for 70fb660
S32-str/bool.t
@@ -6,13 +6,15 @@ nok ?'', "?'' is false";
6
isa_ok ?'', Bool, "?'' is Bool";
7
ok ?'hello', "?'hello' is true";
8
isa_ok ?'hello', Bool, "?'hello' is Bool";
9
+#?niecza skip '"0" should be False (issue 38)'
10
nok ?'0', "?'0' is false";
11
isa_ok ?'0', Bool, "?'0' is Bool";
12
13
nok ''.Bool, "''.Bool is false";
14
isa_ok ''.Bool, Bool, "''.Bool is Bool";
15
ok 'hello'.Bool, "'hello'.Bool is true";
16
isa_ok 'hello'.Bool, Bool, "'hello'.Bool is Bool";
17
18
nok '0'.Bool, "'0'.Bool is false";
19
isa_ok '0'.Bool, Bool, "'0'.Bool is Bool";
20
0 commit comments