aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/mocks/dispatcher.rb
blob: 3391f398bf5cd8c719d56af76ea039d5d096ca5a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
class Dispatcher
  class <<self
    attr_accessor :time_to_sleep
    attr_accessor :raise_exception
    attr_accessor :dispatch_hook

    def dispatch(cgi, session_options = nil, output = $stdout)
      dispatch_hook.call(cgi) if dispatch_hook
      sleep(time_to_sleep || 0)
      raise raise_exception, "Something died" if raise_exception
    end
  end
end