Sha256: c2a527b06189d44901f644cded1f52d1339558c394aa9be98c765f0a2e464d4f
Contents?: true
Size: 580 Bytes
Versions: 37
Compression:
Stored size: 580 Bytes
Contents
require 'rubygems' require 'bundler' Bundler.require require 'aruba/cucumber' require 'cucumber/rspec/doubles' # Following from 'aruba/cucumber' Before do @__aruba_original_paths = (ENV['PATH'] || '').split(File::PATH_SEPARATOR) ENV['PATH'] = ([File.expand_path('bin')] + @__aruba_original_paths).join(File::PATH_SEPARATOR) end After do ENV['PATH'] = @__aruba_original_paths.join(File::PATH_SEPARATOR) end # End of following from 'aruba/cucumber' Then /^the file "([^"]*)" should contain:$/ do |file, exact_content| check_file_content(file, exact_content, true) end
Version data entries
37 entries across 37 versions & 2 rubygems