about summary refs log tree commit diff
path: root/spec/controllers
diff options
context:
space:
mode:
authorClaire <claire.github-309c@sitedethib.com>2021-03-31 13:25:15 +0200
committerGitHub <noreply@github.com>2021-03-31 13:25:15 +0200
commitb7ec2a900251410c65ba214b50c1657209285b07 (patch)
tree8b75038d0c2d6a6bc4f8b38de6a13ddc9bedbff0 /spec/controllers
parenta2a85d5ae03282c6f9cbf452b9b8f7d948a9f380 (diff)
parent15efa32cca5c2d7dfc32b101a38081add1b3af40 (diff)
Merge pull request #1517 from ClearlyClaire/glitch-soc/merge-upstream
Merge upstream changes
Diffstat (limited to 'spec/controllers')
-rw-r--r--spec/controllers/admin/tags_controller_spec.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/spec/controllers/admin/tags_controller_spec.rb b/spec/controllers/admin/tags_controller_spec.rb
index 5c1944fc7..9145d887d 100644
--- a/spec/controllers/admin/tags_controller_spec.rb
+++ b/spec/controllers/admin/tags_controller_spec.rb
@@ -20,4 +20,16 @@ RSpec.describe Admin::TagsController, type: :controller do
       expect(response).to have_http_status(200)
     end
   end
+
+  describe 'GET #show' do
+    let!(:tag) { Fabricate(:tag) }
+
+    before do
+      get :show, params: { id: tag.id }
+    end
+
+    it 'returns status 200' do
+      expect(response).to have_http_status(200)
+    end
+  end
 end