(self)
| 965 | self._assert_not_quoted("y" + q1) |
| 966 | |
| 967 | def test_concat_anon(self): |
| 968 | q1 = _anonymous_label(quoted_name("x", True)) |
| 969 | assert isinstance(q1, _anonymous_label) |
| 970 | value = q1 + "y" |
| 971 | assert isinstance(value, _anonymous_label) |
| 972 | self._assert_quoted(value, True) |
| 973 | |
| 974 | def test_rconcat_anon(self): |
| 975 | q1 = _anonymous_label(quoted_name("x", True)) |
nothing calls this directly
no test coverage detected