otwarchive-symphonyarchive/factories/gift.rb

11 lines
152 B
Ruby
Raw Permalink Normal View History

2026-03-11 22:22:11 +00:00
# frozen_string_literal: true
require "faker"
FactoryBot.define do
factory :gift do
user { create(:user) }
work { create(:work) }
end
end