# File webrick/fcgi/tests.rb, line 70
        def test_app
                FCGI.default_request = MockFCGIRequest.new('/yourmom')
                output = nil
                @app.run do |request, response|
                        request.out.seek(0)
                        output = request.out.read(16000)
                end
                assert(!output.empty?)
                assert(output =~ /Status/)
                assert(!(output =~ /^HTTP/))
        end