1 2 3 4 5 6 7 8 9 10 11 |
it "raises EOFError on loading an empty file" do temp_file = "marshal.rubinius.tmp." File(temp_file, "w") begin file = File(temp_file, "r") lambda {puts "foo" } (EOFError) ensure file rescue nil File(temp_file) rescue nil end end |
Pastie