(self)
| 426 | def test_json_as_string_deprecated(): |
| 427 | class JSONString(object): |
| 428 | def _repr_json_(self): |
| 429 | return '{}' |
| 430 | |
| 431 | f = JSONFormatter() |
| 432 | with warnings.catch_warnings(record=True) as w: |
nothing calls this directly
no outgoing calls
no test coverage detected