summaryrefslogtreecommitdiff
path: root/spec/factories/grafana_integrations.rb
blob: c19417f5a900b8ca2132af487d1d5bd9c3b77468 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

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