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

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

FactoryBot.define do
  factory :metrics_users_starred_dashboard, class: '::Metrics::UsersStarredDashboard' do
    dashboard_path { "custom_dashboard.yml" }
    user
    project
  end
end