目前,使用 rspec-rails (2.14.2),我使用 shoulda (3.5.0) gem 测试模型规范中的关联,如下所示:
# app/models/user.rb
class User < ActiveRecord::Base
belongs_to :school
end
# spec/models/user_spec.rb
describe User do
it { should belong_to :school }
end
经过一些研究,我试图让关联相关的断言起作用(它们似乎都失败了)。
错误信息:
1) User
Failure/Error: it { is_expected.to belong_to :school }
NoMethodError:
undefined method `belong_to' for #<RSpec::ExampleGroups::School:0x007f8a4c7a68d0>
# ./spec/models/user.rb:4:in `block (2 levels) in <top (required)>'
所以我的问题是:
最佳答案
shoulda-matchers 是提供关联、验证和其他匹配器的 gem。
shoulda gem(我们也制作)用于将 shoulda-matchers 与 Test::Unit 一起使用(并且还提供了一些不错的东西,例如上下文和使用字符串作为测试名称的能力)。但是如果你在 RSpec 上,你会想要使用 shoulda-matchers,而不是 shoulda。
关于ruby-on-rails - 测试与 rspec-rails 3.0.1 和 shoulda 的关联不起作用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/24029606/