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