在 Rails 测试之外使用断言
我想开始在我的控制器和模型中添加断言,以断言运行时行为。
如何访问单元测试中可用的所有断言助手?
IE 我想做一些事情,比如
class WidgetController < ApplicationController
def index
@widgets = Widget.all
assert @widgets.length > 0 # using assert in a controller!
end
end
我只需要一个文件吗?
I'd like to start putting assertions in my controllers and models, to assert runtime behavior.
How can I access all of the assertion helpers that are available in unit tests?
I.E. I'd like to do something like
class WidgetController < ApplicationController
def index
@widgets = Widget.all
assert @widgets.length > 0 # using assert in a controller!
end
end
Is there just a file I should require?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这很简单 - 只需要测试/单元/断言:
It's simple - just require test/unit/assertions: