| 361 | end |
| 362 | |
| 363 | def test_open_input_stream |
| 364 | mkpath("AB") |
| 365 | create_file("AB/abc", "some data") |
| 366 | |
| 367 | stream = @fs.open_input_stream("AB/abc") |
| 368 | bytes = stream.read_bytes(4) |
| 369 | assert_equal("some", |
| 370 | bytes.to_s) |
| 371 | stream.close |
| 372 | end |
| 373 | |
| 374 | def test_open_input_file |
| 375 | create_file("ab", "some data") |
nothing calls this directly
no test coverage detected