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/initializers/json_validator_patch_spec.rb')
-rw-r--r--spec/initializers/json_validator_patch_spec.rb39
1 files changed, 0 insertions, 39 deletions
diff --git a/spec/initializers/json_validator_patch_spec.rb b/spec/initializers/json_validator_patch_spec.rb
deleted file mode 100644
index 5d90364ae92..00000000000
--- a/spec/initializers/json_validator_patch_spec.rb
+++ /dev/null
@@ -1,39 +0,0 @@
-# frozen_string_literal: true
-
-require 'spec_helper'
-require 'rspec-parameterized'
-
-RSpec.describe 'JSON validator patch' do
- using RSpec::Parameterized::TableSyntax
-
- let(:schema) { '{"format": "string"}' }
-
- subject { JSON::Validator.validate(schema, data) }
-
- context 'with invalid JSON' do
- where(:data) do
- [
- 'https://example.com',
- '/tmp/test.txt'
- ]
- end
-
- with_them do
- it 'does not attempt to open a file or URI' do
- allow(File).to receive(:read).and_call_original
- allow(URI).to receive(:open).and_call_original
- expect(File).not_to receive(:read).with(data)
- expect(URI).not_to receive(:open).with(data)
- expect(subject).to be true
- end
- end
- end
-
- context 'with valid JSON' do
- let(:data) { %({ 'somekey': 'value' }) }
-
- it 'validates successfully' do
- expect(subject).to be true
- end
- end
-end