3
如何測試生活在app/helpers/application_helper.rb中的助手方法?如何在Rails中測試自定義助手?
我在我的文件test /單元/助理/ application_helper_test.rb
require 'test_helper'
class ApplicationHelperTest < ActionView::TestCase
test "category" do
assert categories_collection
end
end
這個代碼,但我得到這個錯誤 「NameError:未定義的局部變量或方法`categories_collection'」