femslash-city/tests/tempfile_tests.rb
Agnes 596fd85f2f
Some checks failed
CI / test (push) Has been cancelled
accidentally leaked secrets so had to nuke shit fuck
2026-08-19 17:29:54 -04:00

11 lines
231 B
Ruby

# frozen_string_literal: true
require_relative './environment.rb'
describe Tempfile do
it 'should return 0 when no data is written' do
tmp = Tempfile.new
tmp.write ''
tmp.close
_(tmp.size).must_equal 0
end
end