From: Daniel Brumbaugh Keeney Date: 2008-02-15T22:39:53+09:00 Subject: closing files with abrupt interruptions loop do File.open somefile, 'r' do |io| next end end Does somefile get closed? How would I test that? I have the same question if it raises an error (that gets rescued) or throws a symbol. Daniel Brumbaugh Keeney