aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/mocks/fcgi.rb
blob: 59260a684fe88540a2a4973314506611f500ce88 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class FCGI
  class << self
    attr_accessor :time_to_sleep
    attr_accessor :raise_exception
    attr_accessor :each_cgi_count

    def each_cgi
      (each_cgi_count || 1).times do
        sleep(time_to_sleep || 0)
        raise raise_exception, "Something died" if raise_exception
        yield "mock cgi value"
      end
    end
  end
end