在尝试建立命名空间关联时,Factorybot不会注册命名空间,而是使用它自己的命名空间,尽管它的定义就像文档一样(SO上的每个线程都说)。
模型Admin::TicketCategory
class Admin::TicketCategory < ApplicationRecord
has_many :tickets
end
及其工厂:
FactoryBot.define do
factory :ticket_category, class: Admin::TicketCategory do |f|
f.text { Faker::Commerce.product_name }
end
end
Ticket
模型:
class Ticket < ApplicationRecord
belongs_to :user
belongs_to :service_rep, class_name: 'User', foreign_key: :user_id
belongs_to :ticket_category
belongs_to :ticket_status
belongs_to :ticket_urgency
has_many :ticket_comments
end
及其工厂:
FactoryBot.define do
factory :ticket do |f|
f.user
f.ticket_category
f.subject { Faker::Lorem.sentence }
f.body { Faker::Lorem.paragraph }
f.ticket_urgency { admin_ticket_urgency }
f.ticket_status { admin_ticket_status }
f.service_rep { user }
end
end
当我尝试验证Ticket
模型时,会出现此错误:
1) Ticket has a valid factory
Failure/Error: expect(FactoryBot.create(:ticket)).to be_valid
NameError:
uninitialized constant Ticket::TicketCategory
任何帮助将不胜感激!
答案 0 :(得分:1)
关于命名空间模型,这是rails的工作方式: 它将尝试找出当前名称空间中的关联模型。
让我们从您定义的关联开始:
在Integer.parseInt()
中,它应该有Admin::TicketCategory
(假设您在has_many: tickets, class_name: "Ticket"
模型中有ticket_category_id
)。并且在您的Ticket
模型中,您应该拥有Ticket
。
这足以使其正常工作