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.6.15.travis.558.6 spec/spec_helper.rb
travis-1.6.15.travis.557.6 spec/spec_helper.rb
travis-1.6.15.travis.556.6 spec/spec_helper.rb
travis-1.6.15.travis.555.6 spec/spec_helper.rb
travis-1.6.15.travis.554.6 spec/spec_helper.rb
travis-1.6.15.travis.552.6 spec/spec_helper.rb
travis-1.6.15.travis.551.6 spec/spec_helper.rb
travis-1.6.15.travis.550.6 spec/spec_helper.rb
travis-1.6.15.travis.547.6 spec/spec_helper.rb
travis-1.6.15.travis.544.6 spec/spec_helper.rb
travis-1.6.14.travis.543.6 spec/spec_helper.rb
travis-1.6.14 spec/spec_helper.rb
travis-1.6.14.travis.539.6 spec/spec_helper.rb
travis-1.6.13.travis.538.6 spec/spec_helper.rb
travis-1.6.13 spec/spec_helper.rb
travis-1.6.13.travis.536.6 spec/spec_helper.rb
travis-1.6.12 spec/spec_helper.rb
travis-1.6.13.travis.534.6 spec/spec_helper.rb
travis-1.6.12.travis.531.6 spec/spec_helper.rb
travis-1.6.12.travis.529.6 spec/spec_helper.rb