Sha256: ceff43c19f13ccb8666b8ea997cbe2c9113a5b29dcbc1d815bf14c5adc3d82dd
Contents?: true
Size: 609 Bytes
Versions: 6
Compression:
Stored size: 609 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) @aruba_timeout_seconds = 5 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
6 entries across 6 versions & 1 rubygems