AutoCommit Don Jul 30 00:03:02 CEST 2015

This commit is contained in:
Andreas Stephanides
2015-07-30 00:03:02 +02:00
parent 068c2a2e55
commit 97df081b33
66 changed files with 1542 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
FactoryGirl.define do
factory :survey_answer, :class => 'Survey::Answer' do
choice nil
user nil
end
end

View File

@@ -0,0 +1,9 @@
FactoryGirl.define do
factory :survey_choice, :class => 'Survey::Choice' do
text "MyString"
question nil
sort 1
picture "MyString"
end
end

View File

@@ -0,0 +1,8 @@
FactoryGirl.define do
factory :survey_question, :class => 'Survey::Question' do
title "MyString"
text "MyText"
typ 1
end
end