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

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

FactoryBot.define do
  factory :project_metrics_setting, class: 'ProjectMetricsSetting' do
    project
    external_dashboard_url { 'https://grafana.com' }
  end
end