diff options
author | Claire <claire.github-309c@sitedethib.com> | 2021-03-26 18:36:16 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-26 18:36:16 +0100 |
commit | a650a1157d5b71bc5718759643fe5bb572b16a8b (patch) | |
tree | ecf2c5696521b912c578b90543cedd0e202db4d3 /spec/controllers | |
parent | 59f94593d059239c28ab5fb8e2a0c23ce2590254 (diff) |
Fix /admin/tags/:id crashing since Rails 6.1 update (#15953)
Raw SQL passed to `pluck` now has to be explicitly marked as SQL via Arel.sql, see https://github.com/rails/rails/pull/27947
Diffstat (limited to 'spec/controllers')
-rw-r--r-- | spec/controllers/admin/tags_controller_spec.rb | 12 |
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 |