()
| 194 | nt.assert_in(type_str, f) |
| 195 | |
| 196 | def test_string_in_formatter(): |
| 197 | f = PlainTextFormatter() |
| 198 | type_str = '%s.%s' % (C.__module__, 'C') |
| 199 | f.for_type(type_str, foo_printer) |
| 200 | nt.assert_in(type_str, f) |
| 201 | nt.assert_in(C, f) |
| 202 | |
| 203 | def test_pop(): |
| 204 | f = PlainTextFormatter() |
nothing calls this directly
no test coverage detected