summaryrefslogtreecommitdiff
path: root/spec/factories/ci/triggers.rb
blob: fd3afdb1ec27bb39c1bf6a12298ff25aef5153aa (plain)
1
2
3
4
5
6
7
8
9
# Read about factories at https://github.com/thoughtbot/factory_girl

FactoryGirl.define do
  factory :ci_trigger_without_token, class: Ci::Trigger do
    factory :ci_trigger do
      token 'token'
    end
  end
end