wsgitest:用于运行测试的独立 WSGI 服务器

时间:2024-06-23 05:31:55
【文件属性】:

文件名称:wsgitest:用于运行测试的独立 WSGI 服务器

文件大小:8KB

文件格式:ZIP

更新时间:2024-06-23 05:31:55

Python

测试 您可以使用 wsgitest 为 WSGI 应用程序启动 HTTP 服务器并控制进程: @ Request . application def application ( request ): return Response ( 'Hello World!' ) class AppServerTestCase ( TestCase ): def test_hello_app ( self ): server = WSGITestServer . create ( application ) try : response = requests . get ( server . application_url ) self . assertEqual ( response . statu


【文件预览】:
wsgitest-master
----setup.py(2KB)
----.gitignore(72B)
----requirements.txt(35B)
----Makefile(256B)
----.travis.yml(206B)
----MANIFEST.in(244B)
----wsgitest()
--------__init__.py(88B)
--------server.py(3KB)
--------utils.py(391B)
----setup.cfg(64B)
----LICENSE.txt(1KB)
----README.rst(3KB)
----tests()
--------__init__.py(0B)
--------test_server.py(2KB)
--------test_utils.py(556B)
----CHANGES.txt(357B)
----.coveragerc(376B)
----tox.ini(100B)

网友评论