2015-08-25 21:42:46 -04:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: runner_projects
|
|
|
|
#
|
|
|
|
# id :integer not null, primary key
|
|
|
|
# runner_id :integer not null
|
|
|
|
# project_id :integer not null
|
|
|
|
# created_at :datetime
|
|
|
|
# updated_at :datetime
|
|
|
|
#
|
|
|
|
|
|
|
|
FactoryGirl.define do
|
2015-09-09 07:37:50 -04:00
|
|
|
factory :ci_runner_project, class: Ci::RunnerProject do
|
2015-08-25 21:42:46 -04:00
|
|
|
runner_id 1
|
2015-12-04 06:55:23 -05:00
|
|
|
gl_project_id 1
|
2015-08-25 21:42:46 -04:00
|
|
|
end
|
|
|
|
end
|