我一直在努力使用 Factory Girl 建立一个 has_many through 关系。我有两个模型课程和类别,一个课程可以有多个类别,我有两个工厂课程和类别。
我有这三个模型
class Course < ActiveRecord::Base
extend FriendlyId
friendly_id :title, use: [:slugged, :history]
has_many :categorisations
has_many :categories, :through=> :categorisations
belongs_to :partner
belongs_to :user
# validates_uniqueness_of :title
validates :title, presence: true
# validates :start_date, presence: true
# validates :duration, presence:true
# validates :state, presence:true
validates :categories, length: { minimum: 1 , message:"please select"}
validates :partner_id, presence: true, allow_nil: false
end
end
class Category < ActiveRecord::Base
has_many :categorisations
has_many :courses, :through=> :categorisations
belongs_to :user
#validation
validates :name, presence: true , uniqueness: { scope: :name }
end
class Categorisation < ActiveRecord::Base
belongs_to :category
belongs_to :course
end
工厂
FactoryGirl.define do
factory :course do |f|
f.title "Introduction to Accounting short course"
f.start_date "2014-02-27 00:00:00"
f.duration "10 WEEKS ONLINE"
partner
categorisation
end
# join table factory - :category
factory :categorisation do |categorisation|
categorisation.association :course
categorisation.association :category
end
end
单个文件中的类别工厂
FactoryGirl.define do
factory :category do |f|
f.name "Marketing"
end
end
测试运行时我得到的错误是:
合作伙伴有一个有效的课程失败/错误工厂:expect(FactoryGirl.create(:course)).to be_valid ActiveRecord::RecordInvalid: Validation failed: Name has been taken
我想要做的是创建一个具有一个或多个类别的课程,我不确定我在这里做错了什么,但我需要课程工厂有效。我知道我的类别工厂是有效的。
似乎它尝试两次创建一个类别,这就是为什么它提出名称错误已经存在。