Sha256: 49a41bea7baf13e09419f766f48c19b60d43f65bbdf885df4d19a0115446ac3d

Contents?: true

Size: 547 Bytes

Versions: 3

Compression:

Stored size: 547 Bytes

Contents

require 'rubygems'
require 'bundler'

Bundler.require

require 'aruba/cucumber'

# 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

3 entries across 3 versions & 1 rubygems

Version Path
jekyll-s3-0.0.3 features/support/env.rb
jekyll-s3-0.0.2 features/support/env.rb
jekyll-s3-0.0.1 features/support/env.rb