(self)
| 119 | fh.close() |
| 120 | |
| 121 | def test_InvalidFile(self): |
| 122 | invalid_file = invalid_textfile(self.tmpdir) |
| 123 | assert_raises(OSError, self.ds.open, invalid_file) |
| 124 | |
| 125 | def test_ValidGzipFile(self): |
| 126 | try: |
nothing calls this directly
no test coverage detected