Merge pull request #190 from ChrisBr/step_by_step_list

Implements todo list for instance dashboard
This commit is contained in:
Christian Bruckmayer 2014-06-03 19:47:28 +02:00
commit ab21bb14de
13 changed files with 333 additions and 102 deletions

8
spec/factories/venues.rb Normal file
View file

@ -0,0 +1,8 @@
# 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'
end
end