mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-25 01:23:23 +00:00
13 lines
263 B
Ruby
13 lines
263 B
Ruby
# frozen_string_literal: true
|
|
|
|
ENV["RAILS_ENV"] ||= 'test'
|
|
|
|
require 'vcr'
|
|
|
|
VCR.configure do |config|
|
|
config.cassette_library_dir = "spec/fixtures/vcr_cassettes"
|
|
config.hook_into :webmock
|
|
config.ignore_localhost = true
|
|
config.configure_rspec_metadata!
|
|
end
|