summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/usage/service_ping/legacy_metric_timing_decorator_spec.rb
diff options
context:
space:
mode:
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