mastodon/spec/controllers/home_controller_spec.rb

35 lines
784 B
Ruby
Raw Normal View History

2016-02-22 09:00:20 -06:00
require 'rails_helper'
RSpec.describe HomeController, type: :controller do
render_views
2016-02-24 17:17:01 -06:00
describe 'GET #index' do
subject { get :index }
2017-05-23 16:37:24 -05:00
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
2017-05-23 16:37:24 -05:00
it 'redirects to about page' do
@request.path = '/'
is_expected.to redirect_to(about_path)
2017-05-23 16:37:24 -05:00
end
end
context 'when signed in' do
let(:user) { Fabricate(:user) }
before { sign_in(user) }
2017-05-23 16:37:24 -05:00
it 'assigns @body_classes' do
subject
expect(assigns(:body_classes)).to eq 'app-body'
end
end
2016-02-24 17:17:01 -06:00
end
2016-02-22 09:00:20 -06:00
end