()
| 9 | |
| 10 | |
| 11 | def test_detect_encoding(): |
| 12 | with open(nonascii_path, "rb") as f: |
| 13 | enc, lines = openpy.detect_encoding(f.readline) |
| 14 | nt.assert_equal(enc, "iso-8859-5") |
| 15 | |
| 16 | |
| 17 | def test_read_file(): |
nothing calls this directly
no outgoing calls
no test coverage detected