(self, encoding, expected)
| 436 | ), |
| 437 | ) |
| 438 | def test_guess_by_bom(self, encoding, expected): |
| 439 | data = "\ufeff{}".encode(encoding) |
| 440 | assert guess_json_utf(data) == expected |
| 441 | |
| 442 | |
| 443 | USER = PASSWORD = "%!*'();:@&=+$,/?#[] " |
nothing calls this directly
no test coverage detected