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