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:
authorGabriel Mazetto <brodock@gmail.com>2017-08-16 05:49:54 +0300
committerGabriel Mazetto <brodock@gmail.com>2017-08-22 07:33:20 +0300
commitd17a7be8308b06b7077a7cffc5d258148ee08c87 (patch)
tree3c5e5f47644f5d605649ee977654788d4f512739 /spec/models/project_spec.rb
parent78823675b24e82e73a523ad98f1dec78bec6976c (diff)
Refactor project and storage types
Diffstat (limited to 'spec/models/project_spec.rb')
-rw-r--r--spec/models/project_spec.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/models/project_spec.rb b/spec/models/project_spec.rb
index 87f31e2a588..6b646393696 100644
--- a/spec/models/project_spec.rb
+++ b/spec/models/project_spec.rb
@@ -2334,11 +2334,11 @@ describe Project do
end
end
- describe '#ensure_storage_path_exist' do
+ describe '#ensure_storage_path_exists' do
it 'delegates to gitlab_shell to ensure namespace is created' do
expect(gitlab_shell).to receive(:add_namespace).with(project.repository_storage_path, project.base_dir)
- project.ensure_storage_path_exist
+ project.ensure_storage_path_exists
end
end
@@ -2425,11 +2425,11 @@ describe Project do
end
end
- describe '#ensure_storage_path_exist' do
+ describe '#ensure_storage_path_exists' do
it 'delegates to gitlab_shell to ensure namespace is created' do
expect(gitlab_shell).to receive(:add_namespace).with(project.repository_storage_path, '6b/86')
- project.ensure_storage_path_exist
+ project.ensure_storage_path_exists
end
end