Conflicts:
	Gemfile.lock
	config/routes.rb
This commit is contained in:
Thomas Blazek
2015-01-11 22:18:05 +01:00
45 changed files with 1047 additions and 3 deletions

View File

@@ -0,0 +1,8 @@
# Read about factories at https://github.com/thoughtbot/factory_girl
FactoryGirl.define do
factory :fetmeeting do
tnlist "MyText"
typ 1
end
end

View File

@@ -0,0 +1,11 @@
# Read about factories at https://github.com/thoughtbot/factory_girl
FactoryGirl.define do
factory :fetmeetingtop do
title "MyString"
text "MyText"
discussion "MyText"
ersteller "MyString"
fetmeeting_id 1
end
end