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/static_site_editor/config/file_config/entry/mounts_spec.rb')
-rw-r--r--spec/lib/gitlab/static_site_editor/config/file_config/entry/mounts_spec.rb53
1 files changed, 0 insertions, 53 deletions
diff --git a/spec/lib/gitlab/static_site_editor/config/file_config/entry/mounts_spec.rb b/spec/lib/gitlab/static_site_editor/config/file_config/entry/mounts_spec.rb
deleted file mode 100644
index 0ae2ece9474..00000000000
--- a/spec/lib/gitlab/static_site_editor/config/file_config/entry/mounts_spec.rb
+++ /dev/null
@@ -1,53 +0,0 @@
-# frozen_string_literal: true
-
-require 'spec_helper'
-
-RSpec.describe Gitlab::StaticSiteEditor::Config::FileConfig::Entry::Mounts do
- subject(:entry) { described_class.new(config) }
-
- describe 'validations' do
- context 'with a valid config' do
- let(:config) do
- [
- {
- source: 'source',
- target: ''
- },
- {
- source: 'sub-site/source',
- target: 'sub-site'
- }
- ]
- end
-
- it { is_expected.to be_valid }
-
- describe '#value' do
- it 'returns mounts configuration' do
- expect(entry.value).to eq config
- end
- end
- end
-
- context 'with an invalid config' do
- let(:config) { { not_an_array: true } }
-
- it { is_expected.not_to be_valid }
-
- it 'reports errors about wrong type' do
- expect(entry.errors)
- .to include 'mounts config should be a array'
- end
- end
- end
-
- describe '.default' do
- it 'returns default mounts' do
- expect(described_class.default)
- .to eq([{
- source: 'source',
- target: ''
- }])
- end
- end
-end