Merge branch 'main' into glitch-soc/merge-upstream

This commit is contained in:
Claire
2021-03-31 10:34:29 +02:00
12 changed files with 382 additions and 325 deletions

View File

@@ -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