2016-09-28 07:12:33 +10:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe AboutController, type: :controller do
|
2016-11-19 09:08:52 +11:00
|
|
|
render_views
|
2016-09-28 07:12:33 +10:00
|
|
|
|
2017-04-09 22:47:25 +10:00
|
|
|
describe 'GET #show' do
|
2017-05-23 00:27:19 +10:00
|
|
|
before do
|
2017-04-09 22:47:25 +10:00
|
|
|
get :show
|
2017-05-23 00:27:19 +10:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'assigns @instance_presenter' do
|
|
|
|
expect(assigns(:instance_presenter)).to be_kind_of InstancePresenter
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http success' do
|
2018-04-22 05:35:07 +10:00
|
|
|
expect(response).to have_http_status(200)
|
2017-04-09 22:47:25 +10:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'GET #more' do
|
2017-05-23 00:27:19 +10:00
|
|
|
before do
|
2017-04-09 22:47:25 +10:00
|
|
|
get :more
|
2017-05-23 00:27:19 +10:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'assigns @instance_presenter' do
|
|
|
|
expect(assigns(:instance_presenter)).to be_kind_of InstancePresenter
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http success' do
|
2018-04-22 05:35:07 +10:00
|
|
|
expect(response).to have_http_status(200)
|
2016-09-28 07:12:33 +10:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-11-19 09:08:52 +11:00
|
|
|
describe 'GET #terms' do
|
2017-05-23 00:27:19 +10:00
|
|
|
before do
|
2016-11-19 09:08:52 +11:00
|
|
|
get :terms
|
2017-05-23 00:27:19 +10:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http success' do
|
2018-04-22 05:35:07 +10:00
|
|
|
expect(response).to have_http_status(200)
|
2016-11-19 09:08:52 +11:00
|
|
|
end
|
|
|
|
end
|
2017-05-23 00:27:19 +10:00
|
|
|
|
|
|
|
describe 'helper_method :new_user' do
|
|
|
|
it 'returns a new User' do
|
|
|
|
user = @controller.view_context.new_user
|
|
|
|
expect(user).to be_kind_of User
|
|
|
|
expect(user.account).to be_kind_of Account
|
|
|
|
end
|
|
|
|
end
|
2016-09-28 07:12:33 +10:00
|
|
|
end
|