Module: RspecSupportMethods::TemporaryFile

Included in:
RspecSupportMethods
Defined in:
lib/rspec_support_methods/temporary_file.rb

Overview

Helper method for temporary file

Instance Method Summary collapse

Instance Method Details

#temp_file(text) ⇒ Object



4
5
6
7
8
9
# File 'lib/rspec_support_methods/temporary_file.rb', line 4

def temp_file(text)
  file = Tempfile.new('tmp')
  file.write(text)
  file.close
  file
end