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

publication.rb « debian « packages « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 314c7064e9b29ea63ef50596810c42be231d7f26 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

FactoryBot.define do
  factory :debian_publication, class: 'Packages::Debian::Publication' do
    package { association(:debian_package, published_in: nil) }

    distribution { association(:debian_project_distribution, project: package.project) }
  end
end