| 372 | end |
| 373 | |
| 374 | def test_open_input_file |
| 375 | create_file("ab", "some data") |
| 376 | |
| 377 | stream = @fs.open_input_file("ab") |
| 378 | bytes = stream.read_at_bytes(5, 4) |
| 379 | assert_equal("data", |
| 380 | bytes.to_s) |
| 381 | stream.close |
| 382 | end |
| 383 | end |
nothing calls this directly
no test coverage detected