我在两个模型之间有一个关系。这种关系有效,但问题是当我用 shoulda 匹配器编写 Rspec 测试时,我得到了一个错误。
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