mastodon/spec/controllers/home_controller_spec.rb
Eugen Rochko d86cb4cab8 [Glitch] Allow non-logged users to access /web
Port 43b5d5e38d to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
2022-10-09 18:23:15 +02:00

36 lines
767 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
it 'returns http success' do
@request.path = '/web/timelines/tag/name'
is_expected.to have_http_status(:success)
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 do
sign_in(user)
end
it 'returns http success' do
is_expected.to have_http_status(:success)
end
end
end
end