与rspec-rails 3.0.1和shoulda的测试关联不起作用

时间:2014-06-04 05:21:36

标签: ruby-on-rails ruby rspec shoulda

目前,使用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)>'

所以我的问题是:

  1. 你可以在没有shoulda gem的情况下测试协会吗?根据我在“expect”语法中看到的内容,这似乎不可行。
  2. 对于每个人来说,shoulda gem是否会与rspec 3.0.1打破?有解决方法吗?

3 个答案:

答案 0 :(得分:4)

shoulda-matchers是提供关联,验证和其他匹配器的宝石。

shoulda gem(我们也做)是使用带有Test :: Unit的shoulda-matcher(并且还提供了一些很好的东西,比如上下文和使用字符串作为测试名称的能力)。但是,如果您使用RSpec,那么您将要使用shoulda-matchers,而不是应该使用。

答案 1 :(得分:3)

这是它的工作方式,现在使用了shoulda-matchers gem和“expect”语法

describe User, type: :model do
  it { is_expected.to belong_to :school }
end

答案 2 :(得分:2)

我不相信你需要基本关联的宝石。

如果您实际上没有将用户分配到学校,则可能会遇到问题。您需要填充外键,而不是仅仅使用该关系。

所以你可能需要做

@school = School.new
@user = User.new
@school.users << @user

it { should belong_to :school } # within the user block

expect(@user).to belong_to @school