diff options
author | Matt Jankowski <matt@jankowski.online> | 2023-03-10 07:33:30 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-10 13:33:30 +0100 |
commit | 688287c59d526ef76089322a368789f5846c6ac3 (patch) | |
tree | 0a89ad3e71b45b123388898cc67f93ed5a022b91 /spec/controllers/filters | |
parent | 56bddfbfa39956ea3a8c52721eb364b1120634f6 (diff) |
Coverage improvement round-out following up previous work (#23987)
Diffstat (limited to 'spec/controllers/filters')
-rw-r--r-- | spec/controllers/filters/statuses_controller_spec.rb | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/spec/controllers/filters/statuses_controller_spec.rb b/spec/controllers/filters/statuses_controller_spec.rb new file mode 100644 index 000000000..492361188 --- /dev/null +++ b/spec/controllers/filters/statuses_controller_spec.rb @@ -0,0 +1,41 @@ +# frozen_string_literal: true + +require 'rails_helper' + +describe Filters::StatusesController do + render_views + + describe 'GET #index' do + let(:filter) { Fabricate(:custom_filter) } + + context 'with signed out user' do + it 'redirects' do + get :index, params: { filter_id: filter } + + expect(response).to be_redirect + end + end + + context 'with a signed in user' do + context 'with the filter user signed in' do + before { sign_in(filter.account.user) } + + it 'returns http success' do + get :index, params: { filter_id: filter } + + expect(response).to have_http_status(200) + end + end + + context 'with another user signed in' do + before { sign_in(Fabricate(:user)) } + + it 'returns http not found' do + get :index, params: { filter_id: filter } + + expect(response).to have_http_status(404) + end + end + end + end +end |