diff options
author | Alejandro RodrÃguez <alejorro70@gmail.com> | 2016-06-14 12:27:33 -0400 |
---|---|---|
committer | Alejandro RodrÃguez <alejorro70@gmail.com> | 2016-06-14 12:32:51 -0400 |
commit | 98c5e6295b201eeaa760d104f9b43e237f1dbd49 (patch) | |
tree | 9769f7903dabe8b5f8745ced9eb9f1bcf6d7fee4 /spec/requests/api/internal_spec.rb | |
parent | c6cc7680e7da89c145b7e2075266791a3f594eec (diff) | |
download | gitlab-ce-shards-test.tar.gz |
Refactor repository paths handling to allow multiple git mount pointsshards-test
Diffstat (limited to 'spec/requests/api/internal_spec.rb')
-rw-r--r-- | spec/requests/api/internal_spec.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/spec/requests/api/internal_spec.rb b/spec/requests/api/internal_spec.rb index 22802dd0e05..097398442f4 100644 --- a/spec/requests/api/internal_spec.rb +++ b/spec/requests/api/internal_spec.rb @@ -72,6 +72,7 @@ describe API::API, api: true do expect(response.status).to eq(200) expect(json_response["status"]).to be_truthy + expect(json_response["repository_storage_path"]).to eq(project.repository_storage_path) end end @@ -81,6 +82,7 @@ describe API::API, api: true do expect(response.status).to eq(200) expect(json_response["status"]).to be_truthy + expect(json_response["repository_storage_path"]).to eq(project.repository_storage_path) end end end |