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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-01-18 22:00:14 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-01-18 22:00:14 +0300
commit05f0ebba3a2c8ddf39e436f412dc2ab5bf1353b2 (patch)
tree11d0f2a6ec31c7793c184106cedc2ded3d9a2cc5 /spec/lib/gitlab/usage/service_ping/legacy_metric_timing_decorator_spec.rb
parentec73467c23693d0db63a797d10194da9e72a74af (diff)
Add latest changes from gitlab-org/gitlab@15-8-stable-eev15.8.0-rc42
Diffstat (limited to 'spec/lib/gitlab/usage/service_ping/legacy_metric_timing_decorator_spec.rb')
-rw-r--r--spec/lib/gitlab/usage/service_ping/legacy_metric_timing_decorator_spec.rb35
1 files changed, 0 insertions, 35 deletions
diff --git a/spec/lib/gitlab/usage/service_ping/legacy_metric_timing_decorator_spec.rb b/spec/lib/gitlab/usage/service_ping/legacy_metric_timing_decorator_spec.rb
deleted file mode 100644
index 46592379b3d..00000000000
--- a/spec/lib/gitlab/usage/service_ping/legacy_metric_timing_decorator_spec.rb
+++ /dev/null
@@ -1,35 +0,0 @@
-# frozen_string_literal: true
-
-require 'spec_helper'
-
-RSpec.describe Gitlab::Usage::ServicePing::LegacyMetricTimingDecorator do
- using RSpec::Parameterized::TableSyntax
-
- let(:duration) { 123 }
-
- where(:metric_value, :metric_class) do
- 1 | Integer
- "value" | String
- true | TrueClass
- false | FalseClass
- nil | NilClass
- end
-
- with_them do
- let(:decorated_object) { described_class.new(metric_value, duration) }
-
- it 'exposes a duration with the correct value' do
- expect(decorated_object.duration).to eq(duration)
- end
-
- it 'imitates wrapped class', :aggregate_failures do
- expect(decorated_object).to eq metric_value
- expect(decorated_object.class).to eq metric_class
- expect(decorated_object.is_a?(metric_class)).to be_truthy
- # rubocop:disable Style/ClassCheck
- expect(decorated_object.kind_of?(metric_class)).to be_truthy
- # rubocop:enable Style/ClassCheck
- expect({ metric: decorated_object }.to_json).to eql({ metric: metric_value }.to_json)
- end
- end
-end