(self)
| 972 | self._assert_quoted(value, True) |
| 973 | |
| 974 | def test_rconcat_anon(self): |
| 975 | q1 = _anonymous_label(quoted_name("x", True)) |
| 976 | assert isinstance(q1, _anonymous_label) |
| 977 | value = "y" + q1 |
| 978 | assert isinstance(value, _anonymous_label) |
| 979 | self._assert_quoted(value, True) |
| 980 | |
| 981 | def test_coerce_quoted_switch(self): |
| 982 | q1 = quoted_name("x", False) |
nothing calls this directly
no test coverage detected