Sha256: 92667446697ba4bc8df8a8ea11f262d2059d1f74ba1bf1d39c9c0d0aa9cdab89
Contents?: true
Size: 646 Bytes
Versions: 79
Compression:
Stored size: 646 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' # Disable colored gem. Its difficult to test output when it contains colored strings. module Colored def colorize(string, options = {}) string end end
Version data entries
79 entries across 79 versions & 3 rubygems