(self)
| 941 | |
| 942 | class QuotedIdentTest(fixtures.TestBase): |
| 943 | def test_concat_quotetrue(self): |
| 944 | q1 = quoted_name("x", True) |
| 945 | self._assert_not_quoted("y" + q1) |
| 946 | |
| 947 | def test_concat_quotefalse(self): |
| 948 | q1 = quoted_name("x", False) |
nothing calls this directly
no test coverage detected