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.12.travis.528.6 spec/spec_helper.rb
travis-1.6.12.travis.524.6 spec/spec_helper.rb
travis-1.6.12.travis.523.6 spec/spec_helper.rb
travis-1.6.12.travis.521.6 spec/spec_helper.rb
travis-1.6.12.travis.520.6 spec/spec_helper.rb
travis-1.6.12.travis.517.6 spec/spec_helper.rb
travis-1.6.11 spec/spec_helper.rb
travis-1.6.11.travis.516.6 spec/spec_helper.rb
travis-1.6.11.travis.511.6 spec/spec_helper.rb
travis-1.6.11.travis.510.6 spec/spec_helper.rb
travis-1.6.11.travis.507.6 spec/spec_helper.rb
travis-1.6.11.travis.503.6 spec/spec_helper.rb
travis-1.6.10 spec/spec_helper.rb
travis-1.6.11.travis.502.6 spec/spec_helper.rb
travis-1.6.9 spec/spec_helper.rb
travis-1.6.9.travis.484.6 spec/spec_helper.rb
travis-1.6.9.travis.483.6 spec/spec_helper.rb
travis-1.6.9.travis.479.6 spec/spec_helper.rb
travis-1.6.9.travis.463.6 spec/spec_helper.rb
travis-1.6.9.travis.462.6 spec/spec_helper.rb