mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-15 04:34:03 +00:00
9 lines
260 B
Ruby
9 lines
260 B
Ruby
# Read about factories at https://github.com/thoughtbot/factory_girl
|
|
FactoryGirl.define do
|
|
factory :venue do
|
|
name 'Suse Office'
|
|
address 'Maxfeldstrasse 5 \n90409 Nuremberg'
|
|
website 'www.opensuse.org'
|
|
description 'Lorem Ipsum Dolor'
|
|
end
|
|
end
|