Files
growstuff/spec/factories/forums.rb
2020-01-10 16:50:52 +13:00

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