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-09-27 14:12:33 -07:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe AboutController, type: :controller do
|
2016-11-18 14:08:52 -08:00
|
|
|
render_views
|
2016-09-27 14:12:33 -07:00
|
|
|
|
2017-04-09 05:47:25 -07:00
|
|
|
describe 'GET #show' do
|
2016-10-03 08:11:54 -07:00
|
|
|
it 'returns http success' do
|
2017-04-09 05:47:25 -07:00
|
|
|
get :show
|
|
|
|
expect(response).to have_http_status(:success)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'GET #more' do
|
|
|
|
it 'returns http success' do
|
|
|
|
get :more
|
2016-09-27 14:12:33 -07:00
|
|
|
expect(response).to have_http_status(:success)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-11-18 14:08:52 -08:00
|
|
|
describe 'GET #terms' do
|
|
|
|
it 'returns http success' do
|
|
|
|
get :terms
|
|
|
|
expect(response).to have_http_status(:success)
|
|
|
|
end
|
|
|
|
end
|
2016-09-27 14:12:33 -07:00
|
|
|
end
|