我想开始在我的控制器和模型中放置断言,以断言运行时行为。
如何访问单元测试中可用的所有断言助手?
IE 我想做类似的事情
class WidgetController < ApplicationController
def index
@widgets = Widget.all
assert @widgets.length > 0 # using assert in a controller!
end
end
是否只有我需要的文件?