Sha256: 8ad1a556963e8d5c8503c2b1d3bab773c46bb8b420f504e85dacff7b49e70aac
Contents?: true
Size: 830 Bytes
Versions: 2
Compression:
Stored size: 830 Bytes
Contents
require 'fileutils' When /^I have a logo file in the correct location$/ do FileUtils.cp "features/support/logo.png", "features/support/pretty_face/" end Then /^I should remove the logo file$/ do FileUtils.rm "features/support/pretty_face/logo.png" end When /^I have a suite header partial in the correct location$/ do FileUtils.cp "features/support/_suite_header.erb", "features/support/pretty_face" end Then /^I should remove the suite header partial file$/ do FileUtils.rm "features/support/pretty_face/_suite_header.erb" end When /^I have a feature header partial in the correct location$/ do FileUtils.cp "features/support/_feature_header.erb", "features/support/pretty_face" end Then /^I should remove the feature header partial file$/ do FileUtils.rm "features/support/pretty_face/_feature_header.erb" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
pretty_face-0.4 | features/step_definitions/report_steps.rb |
pretty_face-0.3 | features/step_definitions/report_steps.rb |