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

10 lines
206 B
Ruby
Raw Normal View History

2015-08-25 21:42:46 -04:00
# Read about factories at https://github.com/thoughtbot/factory_girl
FactoryGirl.define do
factory :trigger_without_token, class: Trigger do
factory :trigger do
token 'token'
end
end
end