在此先感谢 - 我正在用 vcr 记录控制器规格。
问题:
第一次运行我的spec,它记录正常,然后我删除my_spec_context_dir,重新运行spec,在cassites dir下没有保存任何磁带!
宝石:
gem 'rspec-rails', '~> 3.2.1'
gem 'webmock', '1.22.3', require: false
gem 'vcr'
gem 'capybara', '~> 2.4.3'
规格:
#spec/controllers/my_spec.rb
require 'unit_spec_helper'
describe 'description' do
it 'example_name', :vcr do
@instance_var = table_record.attribute
get 'controller_action'
expect(response.status).to eq(200)
expect(response.content_type).to eq 'image/png'
table_record.delete
end
end
我试过的:
因此,我查看了我的配置,以确保每次运行时都应记录 vcr:
#spec/unit_spec_helper.rb
require 'vcr'
if Rails.env.test?
VCR.configure do |c|
c.ignore_localhost = false
c.hook_into :webmock
c.cassette_library_dir = "spec/support/cassettes"
c.configure_rspec_metadata!
c.allow_http_connections_when_no_cassette = true
c.default_cassette_options = {
allow_playback_repeats: true,
serialize_with: :json,
record: :all,
match_requests_on: [:method, :uri, :headers]
}
c.debug_logger = File.open(Rails.root.join('log/vcr.log'), 'w')
end
end
allow_playback_repeats: true, record: :all
- 是的,我想这就是我想要的
检查vcr.log,我看到磁带被记录了:
[Cassette: 'MyController/description/example_name'] Initialized with options: {:record=>:new_episodes, :match_requests_on=>[:method, :uri, :headers], :allow_unused_http_interactions=>true, :serialize_with=>:json, :persist_with=>:file_system, :allow_playback_repeats=>true}
spec/support/cassettes
dir 仍然是空的,所以我在测试之前清除缓存......Rails.cache.clear
然后重新运行。
刷新spec/support/cassettes
目录,我看到它仍然是空的。您认为阻止 .yml 保存的原因是什么?