(self)
| 424 | assert guess_json_utf(data) == encoding |
| 425 | |
| 426 | def test_bad_utf_like_encoding(self): |
| 427 | assert guess_json_utf(b"\x00\x00\x00\x00") is None |
| 428 | |
| 429 | @pytest.mark.parametrize( |
| 430 | ("encoding", "expected"), |
nothing calls this directly
no test coverage detected