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

trigger_requests.rb « factories « ci « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c85d1027ce697de5d752777ae855e70d42a2cf33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Read about factories at https://github.com/thoughtbot/factory_girl

FactoryGirl.define do
  factory :trigger_request do
    factory :trigger_request_with_variables do
      variables do
        {
          TRIGGER_KEY: 'TRIGGER_VALUE'
        }
      end
    end
  end
end