Sha256: 8866760861a30ca6683b7cd7c26b1d369a1bd5d4756a9cc22dea32e4885975ac
Contents?: true
Size: 612 Bytes
Versions: 1
Compression:
Stored size: 612 Bytes
Contents
$:.unshift File.expand_path('..', __FILE__) $:.unshift File.expand_path('../../lib', __FILE__) require 'kewego_party' require 'rspec' require 'webmock/rspec' require 'vcr' VCR.config do |c| c.cassette_library_dir = 'spec/fixtures/cassette_library' c.stub_with :webmock c.ignore_localhost = true c.default_cassette_options = { :record => :once } end RSpec.configure do |c| c.extend VCR::RSpec::Macros end RSpec.configure do |c| c.after do KewegoParty.reset end end def fixture_path File.expand_path("../fixtures", __FILE__) end def fixture(file) File.new(fixture_path + '/' + file) end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
kewego_party-0.0.1 | spec/spec_helper.rb |