osem-fcy/spec/factories/comments.rb
luzpaz 7d9739349b Fix various typos
Fixes user-facing and non-user-facing typos

Found via `codespell -S "./vendor" -L ontext,rememberable,ridiculus,varius`
2025-10-15 11:15:47 +00:00

11 lines
273 B
Ruby

# frozen_string_literal: true
# Read about factories at https://github.com/thoughtbot/factory_bot
FactoryBot.define do
factory :comment do
body { 'Most interesting comment ever, created by a girl.' }
user
association :commentable, factory: :event
end
end