chinwagsocial/spec/controllers/home_controller_spec.rb

13 lines
240 B
Ruby
Raw Normal View History

2016-02-23 02:00:20 +11:00
require 'rails_helper'
RSpec.describe HomeController, type: :controller do
render_views
2016-02-25 10:17:01 +11:00
describe 'GET #index' do
2016-09-28 07:23:23 +10:00
it 'redirects to about page' do
get :index
2016-09-28 07:23:23 +10:00
expect(response).to redirect_to(about_path)
end
2016-02-25 10:17:01 +11:00
end
2016-02-23 02:00:20 +11:00
end