flowerbox-delivery/features/step_definitions/given/i_have_file.rb

7 lines
179 B
Ruby
Raw Normal View History

Given /^I have the file "([^"]*)" with the content:$/ do |filename, string|
2012-01-23 16:58:20 +00:00
FileUtils.mkdir_p File.dirname(filename)
File.open(filename, 'wb') { |fh| fh.print(string) }
end
2012-01-30 16:34:57 +00:00