bf918b68f6
https://gitlab.com/gitlab-org/gitlab-ce/issues/62971 Adds support to EnvironmentsController#metrics_dashboard for the following params: group, title, y_label These params are used to uniquely identify a panel on the metrics dashboard. Metrics are stored in several places, so this adds utilities to find a specific panel from the database or filesystem depending on the metric specified. Also moves some shared utilities into separate classes, notably default values and errors.
8 lines
233 B
Ruby
8 lines
233 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
describe Gitlab::Metrics::Dashboard::Defaults do
|
|
it { is_expected.to be_const_defined(:DEFAULT_PANEL_TYPE) }
|
|
it { is_expected.to be_const_defined(:DEFAULT_PANEL_WEIGHT) }
|
|
end
|