示例#1
0
def test_make_error_response():
    d = BytesIO()
    s = http.make_error_response("foo")
    language.serve(s, d, {})
示例#2
0
def test_make_error_response():
    d = cStringIO.StringIO()
    s = http.make_error_response("foo")
    language.serve(s, d, {})
示例#3
0
def test_make_error_response():
    d = io.BytesIO()
    s = http.make_error_response("foo")
    language.serve(s, d, {})
示例#4
0
def test_make_error_response():
    d = cStringIO.StringIO()
    s = http.make_error_response("foo")
    language.serve(s, d, {})