(self)
| 949 | self._assert_not_quoted("y" + q1) |
| 950 | |
| 951 | def test_concat_quotenone(self): |
| 952 | q1 = quoted_name("x", None) |
| 953 | self._assert_not_quoted("y" + q1) |
| 954 | |
| 955 | def test_rconcat_quotetrue(self): |
| 956 | q1 = quoted_name("x", True) |
nothing calls this directly
no test coverage detected