about summary refs log tree commit diff
path: root/spec/controllers/about_controller_spec.rb
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2022-10-06 02:19:45 +0200
committerGitHub <noreply@github.com>2022-10-06 02:19:45 +0200
commit58d5b28cb00ffadfeb7a3e1e03f7ae0d3b0d8486 (patch)
tree25249ee5319fb69d5ba26c5d7c6c79856c4be1a0 /spec/controllers/about_controller_spec.rb
parent5fd46dddd7b1d5482c3173c8bcfba0899293307f (diff)
Remove previous landing page (#19300)
Diffstat (limited to 'spec/controllers/about_controller_spec.rb')
-rw-r--r--spec/controllers/about_controller_spec.rb22
1 files changed, 0 insertions, 22 deletions
diff --git a/spec/controllers/about_controller_spec.rb b/spec/controllers/about_controller_spec.rb
index 40e395a64..20069e413 100644
--- a/spec/controllers/about_controller_spec.rb
+++ b/spec/controllers/about_controller_spec.rb
@@ -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