# File webrick/fcgi/tests.rb, line 10
                def initialize(path = nil)
                        if path.nil?
                                @path = '/'
                        else
                                @path = path
                        end
                        @in = StringIO.new
                        @out = StringIO.new
                end