mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 11:44:02 +00:00
Fixes user-facing and non-user-facing typos Found via `codespell -S "./vendor" -L ontext,rememberable,ridiculus,varius`
11 lines
273 B
Ruby
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
|