mirror of
https://github.com/whippyshou/mastodon
synced 2024-11-25 15:46:35 +09:00
13 lines
240 B
Ruby
13 lines
240 B
Ruby
require 'rails_helper'
|
|
|
|
RSpec.describe HomeController, type: :controller do
|
|
render_views
|
|
|
|
describe 'GET #index' do
|
|
it 'redirects to about page' do
|
|
get :index
|
|
expect(response).to redirect_to(about_path)
|
|
end
|
|
end
|
|
end
|