Module: StonesSpec::WithTempfile

Included in:
Runner
Defined in:
lib/helpers/with_tempfile.rb

Instance Method Summary collapse

Instance Method Details

#write_tempfile(content, extension) ⇒ Object



6
7
8
9
10
11
# File 'lib/helpers/with_tempfile.rb', line 6

def write_tempfile(content, extension)
  file = Tempfile.new %W(gobstones. .#{extension})
  file.write content
  file.close
  file
end