forked from cybrespace/mastodon
		
	
		
			
				
	
	
		
			32 lines
		
	
	
	
		
			736 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
	
		
			736 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
require 'rails_helper'
 | 
						|
 | 
						|
RSpec.describe HomeController, type: :controller do
 | 
						|
  render_views
 | 
						|
 | 
						|
  describe 'GET #index' do
 | 
						|
    subject { get :index }
 | 
						|
 | 
						|
    context 'when not signed in' do
 | 
						|
      context 'when requested path is tag timeline' do
 | 
						|
        before { @request.path = '/web/timelines/tag/name' }
 | 
						|
        it { is_expected.to redirect_to '/tags/name' }
 | 
						|
      end
 | 
						|
 | 
						|
      it 'redirects to about page' do
 | 
						|
        @request.path = '/'
 | 
						|
        is_expected.to redirect_to(about_path)
 | 
						|
      end
 | 
						|
    end
 | 
						|
 | 
						|
    context 'when signed in' do
 | 
						|
      let(:user) { Fabricate(:user) }
 | 
						|
 | 
						|
      before { sign_in(user) }
 | 
						|
 | 
						|
      it 'assigns @body_classes' do
 | 
						|
        subject
 | 
						|
        expect(assigns(:body_classes)).to eq 'app-body'
 | 
						|
      end
 | 
						|
    end
 | 
						|
  end
 | 
						|
end
 |