AutoCommit Don Sep 3 12:03:05 CEST 2015

This commit is contained in:
Andreas Stephanides
2015-09-03 12:03:05 +02:00
parent 4835155d06
commit 984e5f4b56
6 changed files with 36 additions and 12 deletions

View File

@@ -1,9 +1,11 @@
# -*- coding: utf-8 -*-
# Read about factories at https://github.com/thoughtbot/factory_girl
FactoryGirl.define do
factory :gremium do
name "MyString"
desc "MyText"
typ "MyString"
name "Kommission"
desc "Das ist eine Kommission die sich mit irgendwas beschäftigt"
typ 1
end
end

View File

@@ -2,10 +2,10 @@
FactoryGirl.define do
factory :membership do
fetprofile_id "MyString"
gremium_id "MyString"
fetprofile_id 1
gremium_id 1
start "2013-08-19"
stop "2013-08-19"
typ "MyString"
stop "2013-08-23"
typ 1
end
end