31 lines
		
	
	
		
			587 B
		
	
	
	
		
			Ruby
		
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			587 B
		
	
	
	
		
			Ruby
		
	
	
	
# frozen_string_literal: true
 | 
						|
 | 
						|
require 'rails_helper'
 | 
						|
 | 
						|
RSpec.describe HomeController, type: :controller do
 | 
						|
  render_views
 | 
						|
 | 
						|
  describe 'GET #index' do
 | 
						|
    subject { get :index }
 | 
						|
 | 
						|
    context 'when not signed in' do
 | 
						|
      it 'returns http success' do
 | 
						|
        @request.path = '/'
 | 
						|
        expect(subject).to have_http_status(:success)
 | 
						|
      end
 | 
						|
    end
 | 
						|
 | 
						|
    context 'when signed in' do
 | 
						|
      let(:user) { Fabricate(:user) }
 | 
						|
 | 
						|
      before do
 | 
						|
        sign_in(user)
 | 
						|
      end
 | 
						|
 | 
						|
      it 'returns http success' do
 | 
						|
        expect(subject).to have_http_status(:success)
 | 
						|
      end
 | 
						|
    end
 | 
						|
  end
 | 
						|
end
 |