1
0
mirror of https://github.com/funamitech/mastodon synced 2024-12-21 18:18:33 +09:00
YuruToot/spec/controllers/home_controller_spec.rb

11 lines
235 B
Ruby

require 'rails_helper'
RSpec.describe HomeController, type: :controller do
describe 'GET #index' do
it 'redirects to login page' do
get :index
expect(response).to redirect_to(new_user_session_path)
end
end
end