This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-02-22 07:00:20 -08:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe HomeController, type: :controller do
|
2016-11-18 14:08:52 -08:00
|
|
|
render_views
|
|
|
|
|
2016-02-24 15:17:01 -08:00
|
|
|
describe 'GET #index' do
|
2016-09-27 14:23:23 -07:00
|
|
|
it 'redirects to about page' do
|
2016-02-29 10:42:08 -08:00
|
|
|
get :index
|
2016-09-27 14:23:23 -07:00
|
|
|
expect(response).to redirect_to(about_path)
|
2016-02-29 10:42:08 -08:00
|
|
|
end
|
2016-02-24 15:17:01 -08:00
|
|
|
end
|
2016-02-22 07:00:20 -08:00
|
|
|
end
|