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