about summary refs log tree commit diff
path: root/spec/controllers/tags_controller_spec.rb
diff options
context:
space:
mode:
authorMatt Jankowski <mjankowski@thoughtbot.com>2017-04-28 09:11:21 -0400
committerEugen Rochko <eugen@zeonfederated.com>2017-04-28 15:11:21 +0200
commit429480bb775d53009e311b605a7ca73bd3acbc97 (patch)
treed44a670c2b5be92f8aa4eb6efdd9c20b44a1b9ee /spec/controllers/tags_controller_spec.rb
parent61067dc2e6105c8d4fcb8c3e864a60490c384354 (diff)
Return missing page when tag does not exist (#2563)
Diffstat (limited to 'spec/controllers/tags_controller_spec.rb')
-rw-r--r--spec/controllers/tags_controller_spec.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/spec/controllers/tags_controller_spec.rb b/spec/controllers/tags_controller_spec.rb
index 80007ecda..f1119ebce 100644
--- a/spec/controllers/tags_controller_spec.rb
+++ b/spec/controllers/tags_controller_spec.rb
@@ -12,5 +12,11 @@ RSpec.describe TagsController, type: :controller do
       get :show, params: { id: 'test' }
       expect(response).to have_http_status(:success)
     end
+
+    it 'returns http missing for non-existent tag' do
+      get :show, params: { id: 'none' }
+
+      expect(response).to have_http_status(:missing)
+    end
   end
 end