Test::Unit 应该相当于 RSpec should_receive

发布于 2024-12-11 04:18:25 字数 194 浏览 0 评论 0原文

我正在为我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

拿命拼未来 2024-12-18 04:18:26

查看摩卡。它是一个可以与 Test::Unit 或 Rspec 一起使用的 gem(但我更喜欢本机 rspeck 模拟)。它允许你写一些像

@post.stubs(:something).returns(:bla)
@post.expects(:something_else).raises(StandardError, "failed")

希望这有帮助的东西

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

@post.stubs(:something).returns(:bla)
@post.expects(:something_else).raises(StandardError, "failed")

Hope this helps

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文