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