11
Cách tạo has_and_belongs_to_many liên kết trong Factory girl
Cho những điều sau đây class User < ActiveRecord::Base has_and_belongs_to_many :companies end class Company < ActiveRecord::Base has_and_belongs_to_many :users end làm thế nào để bạn xác định nhà máy cho các công ty và người dùng bao gồm cả liên kết hai chiều? Đây là nỗ lực của tôi Factory.define :company …