Sha256: 3cb4ef766abc11b9f864f6d2b81446c3ac6ff41163db8902fa59a04142a2b5fa

Contents?: true

Size: 665 Bytes

Versions: 5

Compression:

Stored size: 665 Bytes

Contents

require 'webmock/rspec'
require 'vcr'
require 'timecop'
require 'nokogiri'
require 'codeclimate-test-reporter'

CodeClimate::TestReporter.start if ENV['CODECLIMATE_REPO_TOKEN']

require 'almanack'

Dir[File.expand_path('../support/*.rb', __FILE__)].each { |file| require file }

RSpec.configure do |config|
  config.include ServerSupport, :feature
  config.include EventMatchers
  config.include TimeComparisonMatchers
end

VCR.configure do |config|
  config.cassette_library_dir = File.expand_path('../fixtures/responses', __FILE__)
  config.ignore_hosts 'codeclimate.com'
  config.hook_into :webmock
end

WebMock.disable_net_connect!(:allow => "codeclimate.com")

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
almanack-1.1.0.beta5 spec/spec_helper.rb
almanack-1.1.0.beta4 spec/spec_helper.rb
almanack-1.1.0.beta3 spec/spec_helper.rb
almanack-1.1.0.beta2 spec/spec_helper.rb
almanack-1.1.0.beta1 spec/spec_helper.rb