Sha256: b2de3ebd6b59e5b6df159e63e4c3f7c3d4e7800d921fa423d4d4225423928bcf

Contents?: true

Size: 742 Bytes

Versions: 30

Compression:

Stored size: 742 Bytes

Contents

require "simplecov"

SimpleCov.start do
  command_name 'Unit Tests'
  use_merging true
  merge_timeout 6000
end

require "rspec"
$LOAD_PATH.unshift File.expand_path(File.dirname(__FILE__) + '/../lib')

['sauce-jasmine', 'sauce-cucumber', 'sauce-connect'].each do |gem|
  $LOAD_PATH.unshift(File.expand_path(File.dirname(__FILE__) + "/../gems/#{gem}/lib"))
end

require 'sauce'
require 'capybara'

RSpec.configure do |c|
  c.filter_run_excluding :capybara_version => lambda { |capybara_version_range|
    actual_version = Gem::Version.new Capybara::VERSION
    lower_bound = Gem::Version.new capybara_version_range[0]
    upper_bound = Gem::Version.new capybara_version_range[1]

    !actual_version.between?(lower_bound, upper_bound)
  }
end

Version data entries

30 entries across 30 versions & 2 rubygems

Version Path
sauce-3.7.2 spec/spec_helper.rb
sauce-3.7.1 spec/spec_helper.rb
sauce-3.7.0 spec/spec_helper.rb
sauce-3.5.11 spec/spec_helper.rb
sauce-3.5.10 spec/spec_helper.rb
sauce-3.5.9 spec/spec_helper.rb
sauce-3.5.8 spec/spec_helper.rb
sauce-3.5.7 spec/spec_helper.rb
sauce_ruby-3.5.9 spec/spec_helper.rb
sauce_ruby-3.5.8 spec/spec_helper.rb
sauce_ruby-3.5.7 spec/spec_helper.rb
sauce_ruby-3.5.6 spec/spec_helper.rb
sauce-3.5.6 spec/spec_helper.rb
sauce-3.5.5 spec/spec_helper.rb
sauce-3.5.4 spec/spec_helper.rb
sauce-3.5.3 spec/spec_helper.rb
sauce-3.5.2 spec/spec_helper.rb
sauce-3.5.1 spec/spec_helper.rb
sauce-3.5.0 spec/spec_helper.rb
sauce-3.4.9 spec/spec_helper.rb