2015-10-06 06:01:16 -04:00
|
|
|
FactoryGirl.define do
|
|
|
|
factory :commit_status, class: CommitStatus do
|
|
|
|
started_at 'Di 29. Okt 09:51:28 CET 2013'
|
|
|
|
finished_at 'Di 29. Okt 09:53:28 CET 2013'
|
|
|
|
name 'default'
|
|
|
|
status 'success'
|
|
|
|
description 'commit status'
|
2015-11-24 08:59:02 -05:00
|
|
|
commit factory: :ci_commit_with_one_job
|
2015-10-06 06:01:16 -04:00
|
|
|
|
|
|
|
factory :generic_commit_status, class: GenericCommitStatus do
|
|
|
|
name 'generic'
|
|
|
|
description 'external commit status'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|