summaryrefslogtreecommitdiff
path: root/spec/factories/subscriptions.rb
blob: 2b652cd57bf25825ba6f4c49a6951a232ca6ab5c (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

FactoryBot.define do
  factory :subscription do
    project
    user { project.creator }
    subscribable factory: :issue
  end
end