2014-06-03 16:27:10 +02:00
|
|
|
# Read about factories at https://github.com/thoughtbot/factory_girl
|
|
|
|
|
FactoryGirl.define do
|
|
|
|
|
factory :venue do
|
|
|
|
|
name 'Suse Office'
|
2014-11-20 14:57:03 +01:00
|
|
|
street 'Maxfeldstrasse 5'
|
|
|
|
|
city 'Nuremberg'
|
|
|
|
|
postalcode '90489'
|
|
|
|
|
country 'DE'
|
2014-06-03 16:27:10 +02:00
|
|
|
website 'www.opensuse.org'
|
2014-06-14 18:33:39 +05:30
|
|
|
description 'Lorem Ipsum Dolor'
|
2014-06-03 16:27:10 +02:00
|
|
|
end
|
|
|
|
|
end
|