(self)
| 17 | |
| 18 | class ReadTests: |
| 19 | def test_read_bytes(self): |
| 20 | result = resources.files(self.data).joinpath('binary.file').read_bytes() |
| 21 | self.assertEqual(result, bytes(range(4))) |
| 22 | |
| 23 | def test_read_text_default_encoding(self): |
| 24 | result = ( |
nothing calls this directly
no test coverage detected