1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/railties/test/mocks/dispatcher.rb

11 lines
238 B
Ruby

class Dispatcher
class <<self
attr_accessor :time_to_sleep
attr_accessor :raise_exception
def dispatch(cgi)
sleep(time_to_sleep || 0)
raise raise_exception, "Something died" if raise_exception
end
end
end