| 34 | end |
| 35 | |
| 36 | def test_close |
| 37 | input = Arrow::FileInputStream.new(@tempfile.path) |
| 38 | assert do |
| 39 | not input.closed? |
| 40 | end |
| 41 | input.close |
| 42 | assert do |
| 43 | input.closed? |
| 44 | end |
| 45 | end |
| 46 | |
| 47 | def test_size |
| 48 | input = Arrow::FileInputStream.new(@tempfile.path) |