()
| 240 | |
| 241 | |
| 242 | def test_in_formatter(): |
| 243 | f = PlainTextFormatter() |
| 244 | f.for_type(C, foo_printer) |
| 245 | type_str = "%s.%s" % (C.__module__, "C") |
| 246 | assert C in f |
| 247 | assert type_str in f |
| 248 | |
| 249 | |
| 250 | def test_string_in_formatter(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…