我有这个工厂
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>
任何帮助,将不胜感激