Welcome to mirror list, hosted at ThFree Co, Russian Federation.

subscriptions.rb « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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