Sha256: 5ffde366688edf6392a3c5fded8fbab2f1eb1a021451baf49351bdc37cdd9166
Contents?: true
Size: 582 Bytes
Versions: 4
Compression:
Stored size: 582 Bytes
Contents
# frozen_string_literal: true ENV['CUCUMBER_COLORS'] = nil $:.unshift(File.dirname(__FILE__)) # For Travis.... require 'cucumber/encoding' require 'simplecov_setup' require 'pry' require 'cucumber' RSpec.configure do |c| c.before do ::Cucumber::Term::ANSIColor.coloring = true end end module RSpec module WorkInProgress def pending_under(platforms, reason, &block) if [platforms].flatten.map(&:to_s).include? RUBY_PLATFORM pending "pending under #{platforms.inspect} because: #{reason}", &block else yield end end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
cucumber-3.0.1 | spec/spec_helper.rb |
cucumber-3.0.0 | spec/spec_helper.rb |
cucumber-3.0.0.pre.2 | spec/spec_helper.rb |
cucumber-3.0.0.pre.1 | spec/spec_helper.rb |