2016-02-22 10:00:20 -05:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe HomeController, type: :controller do
|
2016-02-24 18:17:01 -05:00
|
|
|
describe 'GET #index' do
|
2016-09-27 17:23:23 -04:00
|
|
|
it 'redirects to about page' do
|
2016-02-29 13:42:08 -05:00
|
|
|
get :index
|
2016-09-27 17:23:23 -04:00
|
|
|
expect(response).to redirect_to(about_path)
|
2016-02-29 13:42:08 -05:00
|
|
|
end
|
2016-02-24 18:17:01 -05:00
|
|
|
end
|
2016-02-22 10:00:20 -05:00
|
|
|
end
|