()
| 187 | nt.assert_in(C, f.type_printers) |
| 188 | |
| 189 | def test_in_formatter(): |
| 190 | f = PlainTextFormatter() |
| 191 | f.for_type(C, foo_printer) |
| 192 | type_str = '%s.%s' % (C.__module__, 'C') |
| 193 | nt.assert_in(C, f) |
| 194 | nt.assert_in(type_str, f) |
| 195 | |
| 196 | def test_string_in_formatter(): |
| 197 | f = PlainTextFormatter() |
nothing calls this directly
no test coverage detected