(self)
| 1016 | assert not is_expr(42) |
| 1017 | |
| 1018 | def test_is_true_false(self): |
| 1019 | assert is_true(BoolVal(True)) |
| 1020 | assert is_false(BoolVal(False)) |
| 1021 | assert not is_true(BoolVal(False)) |
| 1022 | assert not is_false(BoolVal(True)) |
| 1023 | |
| 1024 | def test_is_int(self): |
| 1025 | assert is_int(Int("x")) |