| 18 | class TestFileOutputStream < Test::Unit::TestCase |
| 19 | sub_test_case(".open") do |
| 20 | def setup |
| 21 | @file = Tempfile.open("arrow-file-output-stream") |
| 22 | @file.write("Hello") |
| 23 | @file.close |
| 24 | end |
| 25 | |
| 26 | def test_default |
| 27 | Arrow::FileOutputStream.open(@file.path) do |file| |