gitlab-org--gitlab-foss/spec/factories/ci/trigger_requests.rb

14 lines
275 B
Ruby
Raw Normal View History

2015-08-26 01:42:46 +00:00
# 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