mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-01-05 16:07:49 -05:00
12 lines
244 B
Ruby
12 lines
244 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Read about factories at https://github.com/thoughtbot/factory_bot
|
|
|
|
FactoryBot.define do
|
|
factory :forum do
|
|
name { "Permaculture" }
|
|
description { "*Everything* about permaculture!" }
|
|
owner
|
|
end
|
|
end
|