diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2017-09-15 00:57:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-15 00:57:08 +0200 |
commit | 472df245799949631646f90d894486e4dbeaaaf9 (patch) | |
tree | 84065454306a2b2b6f5c5cc6aaa51fa31cb2b005 /spec/controllers | |
parent | 0d1215e82f42cd5a7b7bb992e4423d69acb813ed (diff) |
When web UI URL used while logged out, redirect to static page (#4954)
Diffstat (limited to 'spec/controllers')
-rw-r--r-- | spec/controllers/home_controller_spec.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/spec/controllers/home_controller_spec.rb b/spec/controllers/home_controller_spec.rb index d44d720b1..1077a7288 100644 --- a/spec/controllers/home_controller_spec.rb +++ b/spec/controllers/home_controller_spec.rb @@ -6,6 +6,7 @@ RSpec.describe HomeController, type: :controller do describe 'GET #index' do context 'when not signed in' do it 'redirects to about page' do + @request.path = '/' get :index expect(response).to redirect_to(about_path) end @@ -13,6 +14,7 @@ RSpec.describe HomeController, type: :controller do context 'when signed in' do let(:user) { Fabricate(:user) } + subject do sign_in(user) get :index |