gitlab-org--gitlab-foss/spec/factories/ci/runner_projects.rb

18 lines
371 B
Ruby
Raw Normal View History

2015-08-26 01:42:46 +00: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
factory :ci_runner_project, class: Ci::RunnerProject do
2015-08-26 01:42:46 +00:00
runner_id 1
2015-12-04 11:55:23 +00:00
gl_project_id 1
2015-08-26 01:42:46 +00:00
end
end