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

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

FactoryBot.define do
  factory :grafana_integration, class: GrafanaIntegration do
    project
    grafana_url { 'https://grafana.example.com' }
    token { SecureRandom.hex(10) }
    enabled { true }
  end
end