diff options
Diffstat (limited to 'spec/controllers/home_controller_spec.rb')
-rw-r--r-- | spec/controllers/home_controller_spec.rb | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/spec/controllers/home_controller_spec.rb b/spec/controllers/home_controller_spec.rb index d845ae01d..914ca6307 100644 --- a/spec/controllers/home_controller_spec.rb +++ b/spec/controllers/home_controller_spec.rb @@ -7,9 +7,16 @@ RSpec.describe HomeController, type: :controller do subject { get :index } context 'when not signed in' do - it 'returns http success' do + context 'when requested path is tag timeline' do + it 'returns http success' do + @request.path = '/web/timelines/tag/name' + is_expected.to have_http_status(:success) + end + end + + it 'redirects to about page' do @request.path = '/' - is_expected.to have_http_status(:success) + is_expected.to redirect_to(about_path) end end |