diff options
Diffstat (limited to 'spec/initializers/6_validations_spec.rb')
-rw-r--r-- | spec/initializers/6_validations_spec.rb | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/spec/initializers/6_validations_spec.rb b/spec/initializers/6_validations_spec.rb index f96e5a2133f..f5be7cf83bd 100644 --- a/spec/initializers/6_validations_spec.rb +++ b/spec/initializers/6_validations_spec.rb @@ -1,44 +1,44 @@ -require 'spec_helper' -require_relative '../../config/initializers/6_validations.rb' +require "spec_helper" +require_relative "../../config/initializers/6_validations.rb" -describe '6_validations' do +describe "6_validations" do before :all do - FileUtils.mkdir_p('tmp/tests/paths/a/b/c/d') - FileUtils.mkdir_p('tmp/tests/paths/a/b/c2') - FileUtils.mkdir_p('tmp/tests/paths/a/b/d') + FileUtils.mkdir_p("tmp/tests/paths/a/b/c/d") + FileUtils.mkdir_p("tmp/tests/paths/a/b/c2") + FileUtils.mkdir_p("tmp/tests/paths/a/b/d") end after :all do - FileUtils.rm_rf('tmp/tests/paths') + FileUtils.rm_rf("tmp/tests/paths") end - describe 'validate_storages_config' do - context 'with correct settings' do + describe "validate_storages_config" do + context "with correct settings" do before do - mock_storages('foo' => Gitlab::GitalyClient::StorageSettings.new('path' => 'tmp/tests/paths/a/b/c'), 'bar' => Gitlab::GitalyClient::StorageSettings.new('path' => 'tmp/tests/paths/a/b/d')) + mock_storages("foo" => Gitlab::GitalyClient::StorageSettings.new("path" => "tmp/tests/paths/a/b/c"), "bar" => Gitlab::GitalyClient::StorageSettings.new("path" => "tmp/tests/paths/a/b/d")) end - it 'passes through' do + it "passes through" do expect { validate_storages_config }.not_to raise_error end end - context 'when one of the settings is incorrect' do + context "when one of the settings is incorrect" do before do - mock_storages('foo' => Gitlab::GitalyClient::StorageSettings.new('path' => 'tmp/tests/paths/a/b/c', 'failure_count_threshold' => 'not a number')) + mock_storages("foo" => Gitlab::GitalyClient::StorageSettings.new("path" => "tmp/tests/paths/a/b/c", "failure_count_threshold" => "not a number")) end - it 'throws an error' do + it "throws an error" do expect { validate_storages_config }.to raise_error(/failure_count_threshold/) end end - context 'with invalid storage names' do + context "with invalid storage names" do before do - mock_storages('name with spaces' => Gitlab::GitalyClient::StorageSettings.new('path' => 'tmp/tests/paths/a/b/c')) + mock_storages("name with spaces" => Gitlab::GitalyClient::StorageSettings.new("path" => "tmp/tests/paths/a/b/c")) end - it 'throws an error' do + it "throws an error" do expect { validate_storages_config }.to raise_error('"name with spaces" is not a valid storage name. Please fix this in your gitlab.yml before starting GitLab.') end end |