mastodon/spec/controllers/home_controller_spec.rb

13 lines
240 B
Ruby
Raw Normal View History

2016-02-22 09:00:20 -06:00
require 'rails_helper'
RSpec.describe HomeController, type: :controller do
render_views
2016-02-24 17:17:01 -06:00
describe 'GET #index' do
2016-09-27 16:23:23 -05:00
it 'redirects to about page' do
get :index
2016-09-27 16:23:23 -05:00
expect(response).to redirect_to(about_path)
end
2016-02-24 17:17:01 -06:00
end
2016-02-22 09:00:20 -06:00
end