Test::Unit 应该相当于 RSpec should_receive
我正在为我的 Ruby on Rails 应用程序编写一些单元测试。我想测试我的模型是否收到了发送给特定方法的消息。在 RSpec 中,这是通过 should_receive
咒语完成的。
是否有相当于 Test::Unit 可以做同样的事情?如果 Test::Unit 无法做到这一点,是否有一个工具可以与其配合使用来获得该功能?
I am writing some unit tests for my Ruby on Rails application. I would like to test that my model received a message to a particular method. In RSpec this is done with the should_receive
incantation.
Is there an equivalent to Test::Unit that can do the same? If Test::Unit cannot do it, is there a tool I can use in concert with it to get that functionality?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看摩卡。它是一个可以与 Test::Unit 或 Rspec 一起使用的 gem(但我更喜欢本机 rspeck 模拟)。它允许你写一些像
希望这有帮助的东西
Check out mocha. It is a gem that you can use with Test::Unit or Rspec (but I prefer the native rspeck mocking). It allows you to write something like
Hope this helps