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