mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-02-05 23:21:07 -05:00
10 lines
213 B
Ruby
10 lines
213 B
Ruby
# 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
|