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