2016-04-13 05:25:42 -04:00
|
|
|
require_relative '../support/repo_helpers'
|
|
|
|
|
|
|
|
FactoryGirl.define do
|
|
|
|
factory :commit do
|
|
|
|
git_commit RepoHelpers.sample_commit
|
|
|
|
project factory: :empty_project
|
2017-05-31 09:43:19 -04:00
|
|
|
author { build(:author) }
|
2016-04-13 05:25:42 -04:00
|
|
|
|
|
|
|
initialize_with do
|
|
|
|
new(git_commit, project)
|
|
|
|
end
|
2017-01-18 05:38:59 -05:00
|
|
|
|
|
|
|
trait :without_author do
|
2017-05-31 09:43:19 -04:00
|
|
|
author nil
|
2017-01-18 05:38:59 -05:00
|
|
|
end
|
2016-04-13 05:25:42 -04:00
|
|
|
end
|
|
|
|
end
|