我在CPython 2.7中使用了Tornado 4.4。龍捲風hello_world測試返回599
我複製:
import tornado.ioloop
import tornado.web
class MainHandler(tornado.web.RequestHandler):
def get(self):
self.write("Hello, world")
def make_app():
return tornado.web.Application([
(r"/", MainHandler),
])
if __name__ == "__main__":
app = make_app()
app.listen(8888)
tornado.ioloop.IOLoop.current().start()
從http://www.tornadoweb.org/en/stable/guide/structure.html到hello.py,然後:
import hello
class TestHelloApp(AsyncHTTPTestCase):
def get_app(self):
return hello.make_app()
def test_homepage(self):
response = self.fetch('/')
self.assertEqual(response.code, 200)
self.assertEqual(response.body, 'Hello, world')
從http://www.tornadoweb.org/en/stable/testing.html到test_hello.py
當我運行:
python -m tornado.test.runtests test_hello
我得到:
AssertionError: 599 != 200
。
要麼我缺少東西或Tornado文檔/代碼需要更新。
我的不好,謝謝傑西指出。但我仍然得到了599。 – pdx9