2016-09-27 21:12:33 +00:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe AboutController, type: :controller do
|
2016-11-18 22:08:52 +00:00
|
|
|
render_views
|
2016-09-27 21:12:33 +00:00
|
|
|
|
2022-10-13 12:42:37 +00:00
|
|
|
describe 'GET #show' do
|
2017-05-22 14:27:19 +00:00
|
|
|
before do
|
2022-10-13 12:42:37 +00:00
|
|
|
get :show
|
2017-05-22 14:27:19 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http success' do
|
2018-04-21 19:35:07 +00:00
|
|
|
expect(response).to have_http_status(200)
|
2016-09-27 21:12:33 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|