3

我想开始在我的控制器和模型中放置断言,以断言运行时行为。

如何访问单元测试中可用的所有断言助手?

IE 我想做类似的事情

class WidgetController < ApplicationController
    def index
        @widgets = Widget.all
        assert @widgets.length > 0 # using assert in a controller!
     end
end

是否只有我需要的文件?

4

1 回答 1

4

这很简单——只需要测试/单元/断言:

require 'test/unit/assertions'
include Test::Unit::Assertions
于 2011-02-23T00:21:56.297 回答