Fix tests

This commit is contained in:
Eugen Rochko 2016-09-27 23:23:23 +02:00
parent e63aebff7a
commit 2603c7e69f

View file

@ -2,9 +2,9 @@ require 'rails_helper'
RSpec.describe HomeController, type: :controller do
describe 'GET #index' do
it 'redirects to login page' do
it 'redirects to about page' do
get :index
expect(response).to redirect_to(new_user_session_path)
expect(response).to redirect_to(about_path)
end
end
end