Implements todo list for global dashboard

This commit is contained in:
Chrisbr 2014-06-03 14:37:18 +02:00
parent 852e2d4243
commit 60cfc992af
12 changed files with 372 additions and 96 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