16 lines
315 B
Ruby
16 lines
315 B
Ruby
# Read about factories at https://github.com/thoughtbot/factory_girl
|
|
|
|
FactoryGirl.define do
|
|
factory :fetprofile do
|
|
vorname "MyString"
|
|
nachname "MyString"
|
|
short "MyString"
|
|
fetmailalias "MyString"
|
|
desc "MyText"
|
|
picture "MyString"
|
|
active false
|
|
birth_month 4
|
|
birth_day 2
|
|
end
|
|
end
|