d0622b79d8
Also marks a few things as uncovered, and removes an unused class.
14 lines
259 B
Ruby
14 lines
259 B
Ruby
# :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:
|