debian-mirror-gitlab/spec/factories/prometheus_metrics.rb
2019-12-21 20:55:43 +05:30

19 lines
348 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :prometheus_metric, class: PrometheusMetric do
title { 'title' }
query { 'avg(metric)' }
y_label { 'y_label' }
unit { 'm/s' }
group { :business }
project
legend { 'legend' }
trait :common do
common { true }
project { nil }
end
end
end