blob: 70c5c42c5c91d3d1b1494fe3be42a227685d3e6a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
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
it 'redirects to the tag\'s permalink' do
@request.path = '/web/timelines/tag/name'
is_expected.to redirect_to '/tags/name'
end
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
|