Commit 05d3cfab authored by Rémy Coutable's avatar Rémy Coutable

Merge branch 'remove-duplicated-tests' into 'master'

Remove duplicated tests

See merge request !1687
parents ba01638b d6d1a640
...@@ -222,22 +222,6 @@ describe API::Internal, api: true do ...@@ -222,22 +222,6 @@ describe API::Internal, api: true do
end end
end end
context 'with env passed as a JSON' do
it 'sets env in RequestStore' do
expect(Gitlab::Git::Env).to receive(:set).with({
'GIT_OBJECT_DIRECTORY' => 'foo',
'GIT_ALTERNATE_OBJECT_DIRECTORIES' => 'bar'
})
push(key, project.wiki, env: {
GIT_OBJECT_DIRECTORY: 'foo',
GIT_ALTERNATE_OBJECT_DIRECTORIES: 'bar'
}.to_json)
expect(response).to have_http_status(200)
end
end
context "git push with project.wiki" do context "git push with project.wiki" do
it 'responds with success' do it 'responds with success' do
push(key, project.wiki) push(key, project.wiki)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment