summaryrefslogtreecommitdiff
path: root/spec/factories/go_modules.rb
blob: fdbacf48d3b971acebec971600587a1f2a34cf67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

FactoryBot.define do
  factory :go_module, class: 'Packages::Go::Module' do
    initialize_with { new(attributes[:project], attributes[:name], attributes[:path]) }
    skip_create

    project { create :project, :repository }

    path { '' }
    name { "#{Settings.build_gitlab_go_url}/#{project.full_path}#{path.empty? ? '' : '/'}#{path}" }
  end
end