Sha256: 85abd45c3f956dd29759cf0b2bd5312dc82ae7c70b3b708581967251c95628db

Contents?: true

Size: 494 Bytes

Versions: 2

Compression:

Stored size: 494 Bytes

Contents

require 'webmock/rspec'
require 'vcr'
require 'timecop'
require 'nokogiri'

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.hook_into :webmock
end

WebMock.disable_net_connect!

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
almanack-1.1.0 spec/spec_helper.rb
almanack-1.1.0.beta6 spec/spec_helper.rb