作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的程序从网络上下载了一个zip文件,然后对其进行了解析。与解析相关的代码是:
Zip::File.open("real_file.zip") do |zip_file|
# do stuff
end
allow(Zip::File).to receive(:open).and_return(Zip::File.open("mock_file.zip"))
# do stuff
)。我不希望该方法返回模拟文件的内容,而是将rahter分配给
zip_file
的值以供进一步使用。如何做到这一点?
最佳答案
您要执行的操作如下:
mock_file = Zip::File.open('mock_file.zip')
allow(Zip::File).to receive(:open) { |&block| block.call(mock_file) }
Zip::File.open
的调用,并导致良好的堆栈溢出。
关于rspec - 如何在RSpec模拟/ stub 中使用不同的参数值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41406665/
我是一名优秀的程序员,十分优秀!