我正在使用 VCR gem 来记录大量的 http 请求并将它们保存为fixtures/vcr_cassettes 中的fixtures。
它在本地运行良好,但似乎当我在 Heroku 上部署时,未使用固定装置并且测试使用真实的 http 请求,这不是预期的行为。
我的问题是:“app.json”中是否有特殊配置,或者我需要添加以要求我的 CI 运行固定装置而不是真正的 http 请求?
应用程序.json
"environments": {
"test": {
"env": {
..........
},
"addons": ["heroku-postgresql:in-dyno", "heroku-redis:in-dyno"],
"scripts":
{
"test-setup": "bundle exec rake db:seed",
"test": "bundle exec rspec"
}
}
spec_helper.rb
VCR.configure do |config|
config.cassette_library_dir = "./fixtures/vcr_cassettes"
config.hook_into :webmock
config.allow_http_connections_when_no_cassette = true
end