about summary refs log tree commit diff
path: root/spec/controllers/home_controller_spec.rb
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2017-09-15 00:57:08 +0200
committerGitHub <noreply@github.com>2017-09-15 00:57:08 +0200
commit472df245799949631646f90d894486e4dbeaaaf9 (patch)
tree84065454306a2b2b6f5c5cc6aaa51fa31cb2b005 /spec/controllers/home_controller_spec.rb
parent0d1215e82f42cd5a7b7bb992e4423d69acb813ed (diff)
When web UI URL used while logged out, redirect to static page (#4954)
Diffstat (limited to 'spec/controllers/home_controller_spec.rb')
-rw-r--r--spec/controllers/home_controller_spec.rb2
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