[Python]Test Driven Development in Flask application
程序员文章站
2022-06-25 15:47:49
in this recipe, i will describe how to use tdd method to developer flask application.
from...
in this recipe, i will describe how to use tdd method to developer flask application.
from unittest import testcase, main from flask import flask from flask import request class mytest(testcase): def test_flask(self): app = flask(__name__) app.testing = true app.config['server_name'] = 'localhost:5000' app.config['application_root'] = '/demo' @app.route('/') def index(): return request.url ctx = app.test_request_context() self.assertequal(ctx.request.url,'https://localhost:5000/demo/','it is equal') with app.test_client()as client : rv = client.get('/') self.assertequal(rv.data, 'https://localhost:5000/demo/') if __name__ == '__main__': main()
上一篇: python机器学习 玩飞行小鸟游戏
下一篇: ASP.NET页面之间传递值
推荐阅读
-
测试驱动开发实践 - Test-Driven Development(转)
-
[Python]Test Driven Development in Flask application
-
让数据库应用开发不再裸奔 Test-Driven Database Development译
-
让数据库应用开发不再裸奔 Test-Driven Database Development译
-
[Python]Test Driven Development in Flask application
-
Test driven development with pytest
-
Test-Driven Development(测试驱动开发) tddxp单元测试