(self)
| 116 | ) |
| 117 | |
| 118 | def test_and_operator(self): |
| 119 | stmt = tstring(t"1 = 1") & tstring(t"2 = 2") |
| 120 | self.assert_compile(stmt, "1 = 1 AND 2 = 2") |
| 121 | |
| 122 | def test_multiple_literals(self): |
| 123 | a, b, c, d = 1, 2, 3, 4 |
nothing calls this directly
no test coverage detected