(self)
| 953 | self._assert_not_quoted("y" + q1) |
| 954 | |
| 955 | def test_rconcat_quotetrue(self): |
| 956 | q1 = quoted_name("x", True) |
| 957 | self._assert_not_quoted("y" + q1) |
| 958 | |
| 959 | def test_rconcat_quotefalse(self): |
| 960 | q1 = quoted_name("x", False) |
nothing calls this directly
no test coverage detected