14 lines
265 B
Ruby
14 lines
265 B
Ruby
# Read about factories at https://github.com/thoughtbot/factory_girl
|
|
|
|
FactoryBot.define do
|
|
factory :calentry do
|
|
start {1.hours.ago}
|
|
ende {1.days.from_now }
|
|
summary {"MyString"}
|
|
typ {1}
|
|
|
|
association :calendar, factory: :calendar
|
|
end
|
|
end
|
|
|