summaryrefslogtreecommitdiff
path: root/spec/factories/ci/runner_projects.rb
blob: 3aa14ca434db06017a0b232540b0206ea41432cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# == 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
#

# Read about factories at https://github.com/thoughtbot/factory_girl

FactoryGirl.define do
  factory :ci_runner_project, class: Ci::RunnerProject do
    runner_id 1
    project_id 1
  end
end