.circleci
.github
app
bin
config
db
docs
lib
log
nanobox
public
spec
controllers
activitypub
admin
api
auth
concerns
oauth
settings
well_known
about_controller_spec.rb
account_follow_controller_spec.rb
account_unfollow_controller_spec.rb
accounts_controller_spec.rb
application_controller_spec.rb
authorize_interactions_controller_spec.rb
emojis_controller_spec.rb
follower_accounts_controller_spec.rb
following_accounts_controller_spec.rb
home_controller_spec.rb
intents_controller_spec.rb
invites_controller_spec.rb
manifests_controller_spec.rb
media_controller_spec.rb
remote_follow_controller_spec.rb
remote_unfollows_controller_spec.rb
shares_controller_spec.rb
statuses_controller_spec.rb
stream_entries_controller_spec.rb
tags_controller_spec.rb
fabricators
features
fixtures
helpers
lib
mailers
models
policies
presenters
requests
routing
services
support
validators
views
workers
rails_helper.rb
spec_helper.rb
streaming
vendor
.buildpacks
.codeclimate.yml
.dockerignore
.editorconfig
.env.nanobox
.env.production.sample
.env.test
.env.vagrant
.eslintignore
.eslintrc.yml
.foreman
.gitattributes
.gitignore
.haml-lint.yml
.nanoignore
.nvmrc
.postcssrc.yml
.profile
.rspec
.rubocop.yml
.ruby-version
.scss-lint.yml
.slugignore
.yarnclean
AUTHORS.md
Aptfile
CODE_OF_CONDUCT.md
CONTRIBUTING.md
Capfile
Dockerfile
Gemfile
Gemfile.lock
LICENSE
Procfile
Procfile.dev
README.md
Rakefile
Vagrantfile
app.json
babel.config.js
boxfile.yml
config.ru
docker-compose.yml
jest.config.js
package.json
priv-config
scalingo.json
yarn.lock
* Compensate for scrollbar disappearing when media modal visible Make auth pages backgrounds lighter * Fix typo
52 lines
1.0 KiB
Ruby
52 lines
1.0 KiB
Ruby
require 'rails_helper'
|
|
|
|
RSpec.describe AboutController, type: :controller do
|
|
render_views
|
|
|
|
describe 'GET #show' do
|
|
before do
|
|
get :show
|
|
end
|
|
|
|
it 'assigns @instance_presenter' do
|
|
expect(assigns(:instance_presenter)).to be_kind_of InstancePresenter
|
|
end
|
|
|
|
it 'returns http success' do
|
|
expect(response).to have_http_status(200)
|
|
end
|
|
end
|
|
|
|
describe 'GET #more' do
|
|
before do
|
|
get :more
|
|
end
|
|
|
|
it 'assigns @instance_presenter' do
|
|
expect(assigns(:instance_presenter)).to be_kind_of InstancePresenter
|
|
end
|
|
|
|
it 'returns http success' do
|
|
expect(response).to have_http_status(200)
|
|
end
|
|
end
|
|
|
|
describe 'GET #terms' do
|
|
before do
|
|
get :terms
|
|
end
|
|
|
|
it 'returns http success' do
|
|
expect(response).to have_http_status(200)
|
|
end
|
|
end
|
|
|
|
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
|
|
end
|