features/support/env.rb in jekyll-s3-2.2.2 vs features/support/env.rb in jekyll-s3-2.2.3

- old
+ new

@@ -16,9 +16,11 @@ 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) +# Disable colored gem. Its difficult to test output when it contains colored strings. +module Colored + def colorize(string, options = {}) + string + end end -