(self, path1)
| 281 | assert contents == ["samplefile\n"] |
| 282 | |
| 283 | def test_readlines_nocr(self, path1): |
| 284 | fn = path1.join("samplefile") |
| 285 | with ignore_encoding_warning(): |
| 286 | contents = fn.readlines(cr=0) |
| 287 | assert contents == ["samplefile", ""] |
| 288 | |
| 289 | def test_file(self, path1): |
| 290 | assert path1.join("samplefile").check(file=1) |
nothing calls this directly
no test coverage detected