Sha256: 71cd94e2805a7492a3947024a0fc9cee162b9cd2f89a0caa27de190f7617e560

Contents?: true

Size: 668 Bytes

Versions: 223

Compression:

Stored size: 668 Bytes

Contents

require 'support/fake_api'
require 'support/fake_github'
require 'support/helpers'

require 'fileutils'
require 'travis'
require 'highline'
require 'tmpdir'
require 'pry' # pry doesn't like us mocking $stdout

temp_dir = nil

HighLine.use_color = false
HighLine.define_singleton_method(:use_color=) { |_| }

RSpec.configure do |c|
  c.include Helpers

  c.before do
    temp_dir = File.expand_path('travis-spec', Dir.tmpdir)
    FileUtils.rm_rf(temp_dir)
    FileUtils.mkdir_p(temp_dir)
    ENV.delete_if { |k,v| k.start_with? "TRAVIS_" }
    ENV['TRAVIS_CONFIG_PATH'] = File.expand_path('travis', temp_dir)
  end

  c.after do
    FileUtils.rm_rf(temp_dir)
  end
end

Version data entries

223 entries across 223 versions & 1 rubygems

Version Path
travis-1.8.1.travis.692.5 spec/spec_helper.rb
travis-1.8.1.travis.689.5 spec/spec_helper.rb
travis-1.8.0 spec/spec_helper.rb
travis-1.7.8.travis.688.5 spec/spec_helper.rb
travis-1.7.8.travis.687.5 spec/spec_helper.rb
travis-1.7.8.travis.684.5 spec/spec_helper.rb
travis-1.7.7 spec/spec_helper.rb
travis-1.7.7.travis.683.5 spec/spec_helper.rb
travis-1.7.7.travis.681.5 spec/spec_helper.rb
travis-1.7.7.travis.678.5 spec/spec_helper.rb
travis-1.7.6.travis.677.5 spec/spec_helper.rb
travis-1.7.6 spec/spec_helper.rb
travis-1.7.6.travis.676.5 spec/spec_helper.rb
travis-1.7.6.travis.675.5 spec/spec_helper.rb
travis-1.7.6.travis.673.5 spec/spec_helper.rb
travis-1.7.6.travis.673.6 spec/spec_helper.rb
travis-1.7.6.travis.672.5 spec/spec_helper.rb
travis-1.7.6.travis.671.5 spec/spec_helper.rb
travis-1.7.5 spec/spec_helper.rb
travis-1.7.5.travis.658.5 spec/spec_helper.rb