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

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

FactoryBot.define do
  factory :metrics_dashboard_annotation, class: '::Metrics::Dashboard::Annotation' do
    description { "Dashbaord annoation description" }
    dashboard_path { "custom_dashbaord.yml" }
    starting_at { Time.current }
  end
end