(self)
| 957 | self._assert_not_quoted("y" + q1) |
| 958 | |
| 959 | def test_rconcat_quotefalse(self): |
| 960 | q1 = quoted_name("x", False) |
| 961 | self._assert_not_quoted("y" + q1) |
| 962 | |
| 963 | def test_rconcat_quotenone(self): |
| 964 | q1 = quoted_name("x", None) |
nothing calls this directly
no test coverage detected