在 RSpec 单元测试期间消除地址地理编码
我正在使用 geocoder gem 将地理编码功能添加到我的 Active Record 模型类之一。这很好用,但我实际上不希望在单元测试期间触发地理编码。
我尝试通过将其添加到我的 RSpec 测试中来消除对地理编码的调用:
在(:each)之前
User.stub!(:geocode).and_return([1,1]) 结束
,当我运行测试时,它似乎仍然在调用地理编码。我做错了什么?
仅供参考,如果我在实例级别存根(例如 some_user.stub!而不是 User.stub!),这一切都有效。
I'm using the geocoder gem to add geocoding functionality to one of my Active Record model classes. This works great, but I don't actually want the geocoding to fire during unit tests.
I've tried stubbing out the call to geocode by adding this to my RSpec test:
before(:each) do
User.stub!(:geocode).and_return([1,1])
end
However, when I run my tests it still appears to be calling out to geocode. What am I doing wrong?
FYI, this all works if I stub on the instance level (e.g. some_user.stub! instead of User.stub!).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您想在实例级别使用存根,您应该使用 RSpec 之外的其他模拟框架。例如,它是
mocha
(将以下内容添加到spec/spec_helper.rb
):http://rspec.info/documentation/mocks/other_frameworks.html
现在,您可以在测试中使用
any_instance
:If you want to use stubbing on the instance level, you should use other mocking framework than RSpec’s. It's
mocha
for example (add the following tospec/spec_helper.rb
):http://rspec.info/documentation/mocks/other_frameworks.html
Now, you can use
any_instance
in your tests:是
和摩卡一起的。
it's
with mocha.