2023-02-22 00:55:31 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-22 15:00:20 +00:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe HomeController, type: :controller do
|
2016-11-18 22:08:52 +00:00
|
|
|
render_views
|
|
|
|
|
2016-02-24 23:17:01 +00:00
|
|
|
describe 'GET #index' do
|
2018-03-05 18:29:36 +00:00
|
|
|
subject { get :index }
|
|
|
|
|
2017-05-23 22:37:24 +01:00
|
|
|
context 'when not signed in' do
|
2022-09-29 03:39:33 +01:00
|
|
|
it 'returns http success' do
|
2017-09-14 23:57:08 +01:00
|
|
|
@request.path = '/'
|
2023-02-20 04:00:48 +00:00
|
|
|
expect(subject).to have_http_status(:success)
|
2017-05-23 22:37:24 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when signed in' do
|
|
|
|
let(:user) { Fabricate(:user) }
|
2017-09-14 23:57:08 +01:00
|
|
|
|
2022-09-29 03:39:33 +01:00
|
|
|
before do
|
|
|
|
sign_in(user)
|
|
|
|
end
|
2017-05-23 22:37:24 +01:00
|
|
|
|
2022-09-29 03:39:33 +01:00
|
|
|
it 'returns http success' do
|
2023-02-20 04:00:48 +00:00
|
|
|
expect(subject).to have_http_status(:success)
|
2017-05-23 22:37:24 +01:00
|
|
|
end
|
2016-02-29 18:42:08 +00:00
|
|
|
end
|
2016-02-24 23:17:01 +00:00
|
|
|
end
|
2016-02-22 15:00:20 +00:00
|
|
|
end
|