- fail "Temporary gzip file should exist, but doesn't." unless File.exist?(tmp_data)
- fail "Temporary state file should exist, but doesn't." unless File.exist?(tmp_state)
- fail "Temporary gzip file should be non-empty, but isn't." if File.zero?(tmp_data)
- fail "Temporary state file should be non-empty, but isn't." if File.zero?(tmp_state)
+ raise "Temporary gzip file should exist, but doesn't." unless File.exist?(tmp_data)
+ raise "Temporary state file should exist, but doesn't." unless File.exist?(tmp_state)
+ raise "Temporary gzip file should be non-empty, but isn't." if File.zero?(tmp_data)
+ raise "Temporary state file should be non-empty, but isn't." if File.zero?(tmp_state)