(self)
| 998 | eq_(q1, None) |
| 999 | |
| 1000 | def test_apply_map_quoted(self): |
| 1001 | q1 = _anonymous_label(quoted_name("x%s", True)) |
| 1002 | q2 = q1.apply_map("bar") |
| 1003 | eq_(q2, "xbar") |
| 1004 | eq_(q2.quote, True) |
| 1005 | |
| 1006 | def test_apply_map_plain(self): |
| 1007 | q1 = _anonymous_label(quoted_name("x%s", None)) |
nothing calls this directly
no test coverage detected