(self)
| 21 | |
| 22 | class FilesTests: |
| 23 | def test_read_bytes(self): |
| 24 | files = resources.files(self.data) |
| 25 | actual = files.joinpath('utf-8.file').read_bytes() |
| 26 | assert actual == b'Hello, UTF-8 world!\n' |
| 27 | |
| 28 | def test_read_text(self): |
| 29 | files = resources.files(self.data) |
nothing calls this directly
no test coverage detected