summaryrefslogtreecommitdiff
path: root/spec/factories/ci/trigger_requests.rb
blob: db053c610cd58b6d8d2b799a2db9ae518181e01e (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 :ci_trigger_request, class: Ci::TriggerRequest do
    factory :ci_trigger_request_with_variables do
      variables do
        {
          TRIGGER_KEY: 'TRIGGER_VALUE'
        }
      end
    end
  end
end