mastodon/spec/controllers/home_controller_spec.rb

36 lines
767 B
Ruby
Raw Normal View History

2016-02-22 16:00:20 +01:00
require 'rails_helper'
RSpec.describe HomeController, type: :controller do
render_views
2016-02-25 00:17:01 +01:00
describe 'GET #index' do
subject { get :index }
2017-05-23 23:37:24 +02:00
context 'when not signed in' do
context 'when requested path is tag timeline' do
it 'returns http success' do
@request.path = '/web/timelines/tag/name'
is_expected.to have_http_status(:success)
end
end
2017-05-23 23:37:24 +02:00
it 'redirects to about page' do
@request.path = '/'
is_expected.to redirect_to(about_path)
2017-05-23 23:37:24 +02:00
end
end
context 'when signed in' do
let(:user) { Fabricate(:user) }
before do
sign_in(user)
end
2017-05-23 23:37:24 +02:00
it 'returns http success' do
is_expected.to have_http_status(:success)
2017-05-23 23:37:24 +02:00
end
end
2016-02-25 00:17:01 +01:00
end
2016-02-22 16:00:20 +01:00
end