简单设置:
#spec_helper.rb
VCR.configure do |c|
c.cassette_library_dir = File.expand_path '../vcr_cassettes', __FILE__
c.hook_into :fakeweb
c.ignore_localhost = true
c.configure_rspec_metadata!
end
RSpec.configure do |c|
c.treat_symbols_as_metadata_keys_with_true_values = true
end
我希望未标记的示例不会:vcr
受到影响,但似乎并非如此。我收到“VCR 不知道请求...”的错误。
我错过了什么?