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:
authorRobert Schilling <rschilling@student.tugraz.at>2017-08-24 19:03:39 +0300
committerRobert Schilling <rschilling@student.tugraz.at>2017-08-28 18:10:34 +0300
commit915dd57fe26fb228f30ae08edc4905b24d4c4339 (patch)
tree887cf877dae6fbc56bd16100a44c52da87b8611f /spec/requests/api/tags_spec.rb
parentdcd4ea473cab20eee05995ecaca043da98ca5a8d (diff)
Add tests for the unmodified header
Diffstat (limited to 'spec/requests/api/tags_spec.rb')
-rw-r--r--spec/requests/api/tags_spec.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/spec/requests/api/tags_spec.rb b/spec/requests/api/tags_spec.rb
index 6ac0caa7fe8..0bf7863bdc8 100644
--- a/spec/requests/api/tags_spec.rb
+++ b/spec/requests/api/tags_spec.rb
@@ -278,6 +278,10 @@ describe API::Tags do
expect(response).to have_gitlab_http_status(204)
end
+ it_behaves_like '412 response' do
+ let(:request) { api(route, current_user) }
+ end
+
context 'when tag does not exist' do
let(:tag_name) { 'unknown' }