2016-02-23 02:00:20 +11:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe HomeController, type: :controller do
|
2016-11-19 09:08:52 +11:00
|
|
|
render_views
|
|
|
|
|
2016-02-25 10:17:01 +11:00
|
|
|
describe 'GET #index' do
|
2018-03-06 05:29:36 +11:00
|
|
|
subject { get :index }
|
|
|
|
|
2017-05-24 07:37:24 +10:00
|
|
|
context 'when not signed in' do
|
2018-03-06 05:29:36 +11:00
|
|
|
context 'when requested path is tag timeline' do
|
2021-09-26 13:46:13 +10:00
|
|
|
it 'redirects to the tag\'s permalink' do
|
|
|
|
@request.path = '/web/timelines/tag/name'
|
|
|
|
is_expected.to redirect_to '/tags/name'
|
|
|
|
end
|
2018-03-06 05:29:36 +11:00
|
|
|
end
|
|
|
|
|
2017-05-24 07:37:24 +10:00
|
|
|
it 'redirects to about page' do
|
2017-09-15 08:57:08 +10:00
|
|
|
@request.path = '/'
|
2018-03-06 05:29:36 +11:00
|
|
|
is_expected.to redirect_to(about_path)
|
2017-05-24 07:37:24 +10:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when signed in' do
|
|
|
|
let(:user) { Fabricate(:user) }
|
2017-09-15 08:57:08 +10:00
|
|
|
|
2018-03-06 05:29:36 +11:00
|
|
|
before { sign_in(user) }
|
2017-05-24 07:37:24 +10:00
|
|
|
|
|
|
|
it 'assigns @body_classes' do
|
|
|
|
subject
|
|
|
|
expect(assigns(:body_classes)).to eq 'app-body'
|
|
|
|
end
|
2016-03-01 05:42:08 +11:00
|
|
|
end
|
2016-02-25 10:17:01 +11:00
|
|
|
end
|
2016-02-23 02:00:20 +11:00
|
|
|
end
|