trigger_requests.rb 281 Bytes
Newer Older
1 2 3
# Read about factories at https://github.com/thoughtbot/factory_girl

FactoryGirl.define do
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
4 5
  factory :ci_trigger_request do
    factory :ci_trigger_request_with_variables do
6 7 8 9 10 11 12 13
      variables do
        {
          TRIGGER_KEY: 'TRIGGER_VALUE'
        }
      end
    end
  end
end