1
0
Fork 0
mirror of https://github.com/neocities/neocities.git synced 2025-05-16 01:17:19 +02:00
neocities/tests/tempfile_tests.rb
2022-08-10 14:31:36 -05:00

10 lines
201 B
Ruby

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