rspec模型与Factory Girl的关联

时间:2010-10-19 23:34:31

标签: ruby-on-rails factory-bot

我正在尝试为各州的模型创建一个rspec测试。此状态模型与Country模型关联。我的工厂看起来像

Factory.define :country do |country|
  country.name  "Test Country"
end

Factory.define :state do |state|
  state.name "Test State"
  state.association :country
end

我已经制作了一个功能状态模型rspec,但我不确定我设置状态@attr的方式是正确还是黑客

require 'spec_helper'

describe State do
  before(:each) do
    country = Factory(:country)
    @attr = { :name => 'Test State', :country_id => country.id }
  end

  it "should create a new state given valid attributes" do
    State.create!(@attr)
  end  
end

对rails / rspec不熟悉我不确定强行说:country_id => country.id是正确的还是解决问题的廉价方法。我感谢任何帮助或建议。

我也包括两种型号以防万一。

class Country < ActiveRecord::Base
  has_many :states
  attr_accessible :name

  validates :name,  :presence => true,
                    :uniqueness => {:case_sensitive => false}
end

class State < ActiveRecord::Base
  belongs_to :country

  attr_accessible :name, :country_id

  validates :name,  :presence => true,
                    :uniqueness => {:case_sensitive => false, :scope => :country_id}

  validates :country_id, :presence => true
end

1 个答案:

答案 0 :(得分:2)

这是一个好的开始,但你的测试实际上并没有测试任何东西。作为一般规则,每个“it”块应始终有一个“应该”调用。

这是另一种看待它的方式,假设相同的工厂和模型:

require 'spec_helper'

describe State do
  before(:each) do
    @state = Factory.build(:state)
  end

  it "should create a new state given valid attributes" do
    @state.save.should be_true
  end
end