0
我有兩個模型之間有一個關係。這種關係是有效的,但問題是當我用shoulda匹配器寫一個Rspec測試時,我返回一個錯誤。Rails有一個Rspec測試告訴我Unitialized Constant
Failure/Error: it { should have_one(:userresetpassword)}
NameError:
uninitialized constant User::Userresetpassword
我在user.rb
has_one :userresetpassword
代碼我的RSpec的測試
describe "associations" do
it { should have_one(:userresetpassword)}
end
'require'spec_helper''在spec文件中。爲了簡潔,我省略了它。 – jason328
它看起來應該或rails不知道你想要的類名是什麼,該協會的類名是什麼?你的關聯名稱會表明它是'Userresetpassword'。 –
關閉,它是'UserResetPassword'。 – jason328