我有這個工廠我如何使用Factory Girl創建公司?
FactoryGirl.define do
factory :user do
email { Faker::Internet.email }
first_name { Faker::Name.first_name }
last_name { Faker::Name.last_name }
password { 'TarXlrOPfaokNOzls2U8' }
end
end
,直到我加入了協會審定
class User < ActiveRecord::Base
has_many :companies, :through => :positions
has_many :positions
validates_presence_of :company
如何添加到我的工廠來實現這一
我想這
association :company, factory: :company, strategy: :build
這真是棒極了
但我所有的測試都失敗
undefined method `company=' for #<User:0x007fcd7c13c260>
任何幫助,將不勝感激
上寫入validates_existence_of的新方法(rails 3.2)awesome thanks .. – Trace 2012-07-05 14:17:40