Welcome to mirror list, hosted at ThFree Co, Russian Federation.

database_mode_spec.rb « instrumentations « metrics « usage « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a6128b4df1fe9c2cf218c2f99f370f2dfdc93195 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::Usage::Metrics::Instrumentations::DatabaseMode, feature_category: :cell do
  let(:expected_value) { Gitlab::Database.database_mode }

  it_behaves_like 'a correct instrumented metric value', { time_frame: 'none' }
end