ファイル
btrc-hub/backend/spec/factories/posts.rb
T
2026-05-23 03:50:54 +09:00

9 行
201 B
Ruby

FactoryBot.define do
factory :post do
sequence(:url) { |n| "https://example.com/factory-post-#{ n }" }
title { 'factory post' }
thumbnail_base { nil }
uploaded_user { nil }
end
end