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: a647ef8d2ecc83d4b13c0ee993497e5a6bef00f0 (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