(self)
| 1004 | eq_(q2.quote, True) |
| 1005 | |
| 1006 | def test_apply_map_plain(self): |
| 1007 | q1 = _anonymous_label(quoted_name("x%s", None)) |
| 1008 | q2 = q1.apply_map("bar") |
| 1009 | eq_(q2, "xbar") |
| 1010 | self._assert_not_quoted(q2) |
| 1011 | |
| 1012 | def test_pickle_quote(self): |
| 1013 | q1 = quoted_name("x", True) |
nothing calls this directly
no test coverage detected