uh-wm/spec/support/filesystem_helpers.rb
2015-04-14 02:07:57 +00:00

12 lines
179 B
Ruby

require 'tempfile'
module FileSystemHelpers
def with_file content
Tempfile.create('uhwm_rspec') do |f|
f.write content
f.rewind
yield f
end
end
end