(self)
| 961 | self._assert_not_quoted("y" + q1) |
| 962 | |
| 963 | def test_rconcat_quotenone(self): |
| 964 | q1 = quoted_name("x", None) |
| 965 | self._assert_not_quoted("y" + q1) |
| 966 | |
| 967 | def test_concat_anon(self): |
| 968 | q1 = _anonymous_label(quoted_name("x", True)) |
nothing calls this directly
no test coverage detected