8 lines
235 B
Ruby
8 lines
235 B
Ruby
# typed: false
|
|
FactoryBot.define do
|
|
factory :domain_post_file_thumbnail, class: "Domain::PostFileThumbnail" do
|
|
association :post_file, factory: :domain_post_file
|
|
thumbnail_type { Domain::ThumbnailType::Small.name }
|
|
end
|
|
end
|