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:
Diffstat (limited to 'spec/lib/gitlab/tracking/standard_context_spec.rb')
-rw-r--r--spec/lib/gitlab/tracking/standard_context_spec.rb27
1 files changed, 4 insertions, 23 deletions
diff --git a/spec/lib/gitlab/tracking/standard_context_spec.rb b/spec/lib/gitlab/tracking/standard_context_spec.rb
index 508b33949a8..cfb83bc0528 100644
--- a/spec/lib/gitlab/tracking/standard_context_spec.rb
+++ b/spec/lib/gitlab/tracking/standard_context_spec.rb
@@ -93,30 +93,11 @@ RSpec.describe Gitlab::Tracking::StandardContext do
end
context 'with incorrect argument type' do
- context 'when standard_context_type_check FF is disabled' do
- before do
- stub_feature_flags(standard_context_type_check: false)
- end
-
- subject { described_class.new(project: create(:group)) }
-
- it 'does not call `track_and_raise_for_dev_exception`' do
- expect(Gitlab::ErrorTracking).not_to receive(:track_and_raise_for_dev_exception)
- snowplow_context
- end
- end
+ subject { described_class.new(project: create(:group)) }
- context 'when standard_context_type_check FF is enabled' do
- before do
- stub_feature_flags(standard_context_type_check: true)
- end
-
- subject { described_class.new(project: create(:group)) }
-
- it 'does call `track_and_raise_for_dev_exception`' do
- expect(Gitlab::ErrorTracking).to receive(:track_and_raise_for_dev_exception)
- snowplow_context
- end
+ it 'does call `track_and_raise_for_dev_exception`' do
+ expect(Gitlab::ErrorTracking).to receive(:track_and_raise_for_dev_exception)
+ snowplow_context
end
end