summaryrefslogtreecommitdiff
path: root/spec/factories/grafana_integrations.rb
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