2016-09-27 23:12:33 +02:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe AboutController, type: :controller do
|
2016-11-18 23:08:52 +01:00
|
|
|
render_views
|
2016-09-27 23:12:33 +02:00
|
|
|
|
2017-04-09 14:47:25 +02:00
|
|
|
describe 'GET #show' do
|
2017-05-22 16:27:19 +02:00
|
|
|
before do
|
2017-04-09 14:47:25 +02:00
|
|
|
get :show
|
2017-05-22 16:27:19 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'assigns @body_classes' do
|
|
|
|
expect(assigns(:body_classes)).to eq 'about-body'
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'assigns @instance_presenter' do
|
|
|
|
expect(assigns(:instance_presenter)).to be_kind_of InstancePresenter
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http success' do
|
2017-04-09 14:47:25 +02:00
|
|
|
expect(response).to have_http_status(:success)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'GET #more' do
|
2017-05-22 16:27:19 +02:00
|
|
|
before do
|
2017-04-09 14:47:25 +02:00
|
|
|
get :more
|
2017-05-22 16:27:19 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'assigns @body_classes' do
|
|
|
|
expect(assigns(:body_classes)).to eq 'about-body'
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'assigns @instance_presenter' do
|
|
|
|
expect(assigns(:instance_presenter)).to be_kind_of InstancePresenter
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http success' do
|
2016-09-27 23:12:33 +02:00
|
|
|
expect(response).to have_http_status(:success)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-11-18 23:08:52 +01:00
|
|
|
describe 'GET #terms' do
|
2017-05-22 16:27:19 +02:00
|
|
|
before do
|
2016-11-18 23:08:52 +01:00
|
|
|
get :terms
|
2017-05-22 16:27:19 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'assigns @body_classes' do
|
|
|
|
expect(assigns(:body_classes)).to eq 'about-body'
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http success' do
|
2016-11-18 23:08:52 +01:00
|
|
|
expect(response).to have_http_status(:success)
|
|
|
|
end
|
|
|
|
end
|
2017-05-22 16:27:19 +02: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-27 23:12:33 +02:00
|
|
|
end
|