Welcome to mirror list, hosted at ThFree Co, Russian Federation.

external_pull_requests.rb « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 08d0fa4d41902a27a1a213afa2e888c051e84736 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

FactoryBot.define do
  factory :external_pull_request do
    sequence(:pull_request_iid)
    project
    source_branch 'feature'
    source_repository 'the-repository'
    source_sha '97de212e80737a608d939f648d959671fb0a0142'
    target_branch 'master'
    target_repository 'the-repository'
    target_sha 'a09386439ca39abe575675ffd4b89ae824fec22f'
    status :open

    trait(:closed) { status 'closed' }
  end
end