我在轨道上打招呼"测试"案例。为了练习目的,我写了一个测试用例,我正在检查保存的对象是否有效。运行此测试用例后,我收到错误NoMethodError: undefined method create for ArticleTest:Class
。我正在关注rails guide http://guides.rubyonrails.org/testing.html
require 'test_helper'
class ArticleTest < ActiveSupport::TestCase
test "the truth" do
@article = ArticleTest.create
assert @article.valid?
end
end
我的代码有什么问题?
答案 0 :(得分:0)
我的错误。
型号名称是&#34;文章&#34;我写的是&#34; ArticleTest&#34;