gpt4 book ai didi

ruby - VCR 不想在钩子(Hook)前后处理请求。

转载 作者:数据小太阳 更新时间:2023-10-29 08:38:45 28 4
gpt4 key购买 nike

我为一个 HTTP REST API 开发了一个 ruby​​ 包装器,使用 rspec 和 vcr 来测试我的请求。项目加载到 travis-ci.org,它始终自动运行测试。我的测试有问题。 VCR 无法处理钩子(Hook)之前和之后的请求,实现是为了防止用测试数据填充服务器。

  describe '.find' do
before :all do
@project = Project.new(name: "Project#{Time.now.to_i}").save
end

after :all do
@project.delete
end

#tests
end

我有一个录像机错误:

An error occurred in a before(:all) hook.
VCR::Errors::UnhandledHTTPRequestError:

当然,我不想在每次测试中都创建和删除一个远程实体。

最佳答案

  describe '.find' do
before :all do
VCR.use_cassette("some_cassette_name") do
@project = Project.new(name: "Project#{Time.now.to_i}").save
end
end

after :all do
VCR.use_cassette("some_other_cassette_name") do
@project.delete
end
end

#tests
end

关于ruby - VCR 不想在钩子(Hook)前后处理请求。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18127860/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com