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: 8f7ab74ec70c039b9361be348a22fbf709e1c483 (plain)
1
2
3
4
5
6
7
FactoryBot.define do
  factory :subscription do
    project
    user { project.creator }
    subscribable factory: :issue
  end
end