Created
February 13, 2015 14:39
-
-
Save oriolgual/bdb3106d943ef3ca7281 to your computer and use it in GitHub Desktop.
Spinach with rspec 3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ENV['RAILS_ENV'] = 'test' | |
require './config/environment' | |
require 'rspec/rails' | |
require 'capybara-webkit' | |
require 'vcr' | |
VCR.configure do |c| | |
c.cassette_library_dir = 'fixtures/vcr_cassettes' | |
c.hook_into :webmock | |
c.allow_http_connections_when_no_cassette = true | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment