summaryrefslogtreecommitdiff
path: root/app/controllers/unicorn_test_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/unicorn_test_controller.rb')
-rw-r--r--app/controllers/unicorn_test_controller.rb14
1 files changed, 0 insertions, 14 deletions
diff --git a/app/controllers/unicorn_test_controller.rb b/app/controllers/unicorn_test_controller.rb
deleted file mode 100644
index ed04bd1f77d..00000000000
--- a/app/controllers/unicorn_test_controller.rb
+++ /dev/null
@@ -1,14 +0,0 @@
-# :nocov:
-if Rails.env.test?
- class UnicornTestController < ActionController::Base
- def pid
- render plain: Process.pid.to_s
- end
-
- def kill
- Process.kill(params[:signal], Process.pid)
- render plain: 'Bye!'
- end
- end
-end
-# :nocov: