mastodon/spec/controllers/home_controller_spec.rb

13 lines
240 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
2016-09-27 23:23:23 +02:00
it 'redirects to about page' do
get :index
2016-09-27 23:23:23 +02:00
expect(response).to redirect_to(about_path)
end
2016-02-25 00:17:01 +01:00
end
2016-02-22 16:00:20 +01:00
end