Remove previous landing page (#19300)

This commit is contained in:
Eugen Rochko 2022-10-06 02:19:45 +02:00 committed by GitHub
parent 5fd46dddd7
commit 58d5b28cb0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 8 additions and 210 deletions

View file

@ -3,20 +3,6 @@ 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
@ -30,12 +16,4 @@ RSpec.describe AboutController, type: :controller 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

View file

@ -10,30 +10,30 @@ describe 'Localization' do
it 'uses a specific region when provided' do
headers = { 'Accept-Language' => 'zh-HK' }
get "/about", headers: headers
get "/auth/sign_in", headers: headers
expect(response.body).to include(
I18n.t('about.tagline', locale: 'zh-HK')
I18n.t('auth.login', locale: 'zh-HK')
)
end
it 'falls back to a locale when region missing' do
headers = { 'Accept-Language' => 'es-FAKE' }
get "/about", headers: headers
get "/auth/sign_in", headers: headers
expect(response.body).to include(
I18n.t('about.tagline', locale: 'es')
I18n.t('auth.login', locale: 'es')
)
end
it 'falls back to english when locale is missing' do
headers = { 'Accept-Language' => '12-FAKE' }
get "/about", headers: headers
get "/auth/sign_in", headers: headers
expect(response.body).to include(
I18n.t('about.tagline', locale: 'en')
I18n.t('auth.login', locale: 'en')
)
end
end

View file

@ -1,25 +0,0 @@
# frozen_string_literal: true
require 'rails_helper'
describe 'about/show.html.haml', without_verify_partial_doubles: true do
before do
allow(view).to receive(:site_hostname).and_return('example.com')
allow(view).to receive(:site_title).and_return('example site')
allow(view).to receive(:new_user).and_return(User.new)
allow(view).to receive(:use_seamless_external_login?).and_return(false)
allow(view).to receive(:current_account).and_return(nil)
end
it 'has valid open graph tags' do
assign(:instance_presenter, InstancePresenter.new)
render
header_tags = view.content_for(:header_tags)
expect(header_tags).to match(%r{<meta content=".+" property="og:title" />})
expect(header_tags).to match(%r{<meta content="website" property="og:type" />})
expect(header_tags).to match(%r{<meta content=".+" property="og:image" />})
expect(header_tags).to match(%r{<meta content="http://.+" property="og:url" />})
end
end