Browse Source

♻️ Update default API title from "Fast API" to "FastAPI" for consistency (#890)

pull/893/head
Sebastián Ramírez 5 years ago
committed by GitHub
parent
commit
b307d38897
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      docs/tutorial/first-steps.md
  2. 2
      fastapi/applications.py
  3. 2
      tests/test_additional_properties.py
  4. 2
      tests/test_additional_response_extra.py
  5. 2
      tests/test_additional_responses_bad.py
  6. 2
      tests/test_additional_responses_custom_validationerror.py
  7. 2
      tests/test_additional_responses_default_validationerror.py
  8. 2
      tests/test_additional_responses_response_class.py
  9. 2
      tests/test_additional_responses_router.py
  10. 2
      tests/test_application.py
  11. 2
      tests/test_custom_route_class.py
  12. 2
      tests/test_extra_routes.py
  13. 2
      tests/test_filter_pydantic_sub_model.py
  14. 2
      tests/test_modules_same_name_body/test_main.py
  15. 2
      tests/test_multi_body_errors.py
  16. 2
      tests/test_multi_query_errors.py
  17. 2
      tests/test_put_no_body.py
  18. 2
      tests/test_repeated_dependency_schema.py
  19. 2
      tests/test_response_class_no_mediatype.py
  20. 2
      tests/test_response_code_no_body.py
  21. 2
      tests/test_security_api_key_cookie.py
  22. 2
      tests/test_security_api_key_cookie_optional.py
  23. 2
      tests/test_security_api_key_header.py
  24. 2
      tests/test_security_api_key_header_optional.py
  25. 2
      tests/test_security_api_key_query.py
  26. 2
      tests/test_security_api_key_query_optional.py
  27. 2
      tests/test_security_http_base.py
  28. 2
      tests/test_security_http_base_optional.py
  29. 2
      tests/test_security_http_basic_optional.py
  30. 2
      tests/test_security_http_basic_realm.py
  31. 2
      tests/test_security_http_bearer.py
  32. 2
      tests/test_security_http_bearer_optional.py
  33. 2
      tests/test_security_http_digest.py
  34. 2
      tests/test_security_http_digest_optional.py
  35. 2
      tests/test_security_oauth2.py
  36. 2
      tests/test_security_oauth2_authorization_code_bearer.py
  37. 2
      tests/test_security_oauth2_optional.py
  38. 2
      tests/test_security_oauth2_password_bearer_optional.py
  39. 2
      tests/test_security_openid_connect.py
  40. 2
      tests/test_security_openid_connect_optional.py
  41. 2
      tests/test_starlette_exception.py
  42. 2
      tests/test_sub_callbacks.py
  43. 2
      tests/test_tutorial/test_additional_responses/test_tutorial001.py
  44. 2
      tests/test_tutorial/test_additional_responses/test_tutorial002.py
  45. 2
      tests/test_tutorial/test_additional_responses/test_tutorial003.py
  46. 2
      tests/test_tutorial/test_additional_responses/test_tutorial004.py
  47. 2
      tests/test_tutorial/test_async_sql_databases/test_tutorial001.py
  48. 2
      tests/test_tutorial/test_bigger_applications/test_main.py
  49. 2
      tests/test_tutorial/test_body/test_tutorial001.py
  50. 2
      tests/test_tutorial/test_body_fields/test_tutorial001.py
  51. 2
      tests/test_tutorial/test_body_multiple_params/test_tutorial001.py
  52. 2
      tests/test_tutorial/test_body_multiple_params/test_tutorial003.py
  53. 2
      tests/test_tutorial/test_body_nested_models/test_tutorial009.py
  54. 2
      tests/test_tutorial/test_body_updates/test_tutorial001.py
  55. 2
      tests/test_tutorial/test_cookie_params/test_tutorial001.py
  56. 2
      tests/test_tutorial/test_custom_response/test_tutorial001.py
  57. 2
      tests/test_tutorial/test_custom_response/test_tutorial004.py
  58. 2
      tests/test_tutorial/test_dependencies/test_tutorial001.py
  59. 2
      tests/test_tutorial/test_dependencies/test_tutorial004.py
  60. 2
      tests/test_tutorial/test_dependencies/test_tutorial006.py
  61. 2
      tests/test_tutorial/test_events/test_tutorial001.py
  62. 2
      tests/test_tutorial/test_events/test_tutorial002.py
  63. 2
      tests/test_tutorial/test_extra_data_types/test_tutorial001.py
  64. 2
      tests/test_tutorial/test_extra_models/test_tutorial003.py
  65. 2
      tests/test_tutorial/test_extra_models/test_tutorial004.py
  66. 2
      tests/test_tutorial/test_extra_models/test_tutorial005.py
  67. 2
      tests/test_tutorial/test_first_steps/test_tutorial001.py
  68. 2
      tests/test_tutorial/test_handling_errors/test_tutorial001.py
  69. 2
      tests/test_tutorial/test_handling_errors/test_tutorial002.py
  70. 2
      tests/test_tutorial/test_handling_errors/test_tutorial003.py
  71. 2
      tests/test_tutorial/test_handling_errors/test_tutorial004.py
  72. 2
      tests/test_tutorial/test_handling_errors/test_tutorial005.py
  73. 2
      tests/test_tutorial/test_handling_errors/test_tutorial006.py
  74. 2
      tests/test_tutorial/test_header_params/test_tutorial001.py
  75. 2
      tests/test_tutorial/test_openapi_callbacks/test_tutorial001.py
  76. 2
      tests/test_tutorial/test_path_operation_advanced_configurations/test_tutorial001.py
  77. 2
      tests/test_tutorial/test_path_operation_advanced_configurations/test_tutorial002.py
  78. 2
      tests/test_tutorial/test_path_operation_advanced_configurations/test_tutorial003.py
  79. 2
      tests/test_tutorial/test_path_operation_advanced_configurations/test_tutorial004.py
  80. 2
      tests/test_tutorial/test_path_operation_configurations/test_tutorial005.py
  81. 2
      tests/test_tutorial/test_path_operation_configurations/test_tutorial006.py
  82. 2
      tests/test_tutorial/test_path_params/test_tutorial004.py
  83. 2
      tests/test_tutorial/test_path_params/test_tutorial005.py
  84. 2
      tests/test_tutorial/test_query_params/test_tutorial005.py
  85. 2
      tests/test_tutorial/test_query_params/test_tutorial006.py
  86. 2
      tests/test_tutorial/test_query_params/test_tutorial007.py
  87. 2
      tests/test_tutorial/test_query_params_str_validations/test_tutorial001.py
  88. 2
      tests/test_tutorial/test_query_params_str_validations/test_tutorial011.py
  89. 2
      tests/test_tutorial/test_query_params_str_validations/test_tutorial012.py
  90. 2
      tests/test_tutorial/test_query_params_str_validations/test_tutorial013.py
  91. 2
      tests/test_tutorial/test_request_files/test_tutorial001.py
  92. 2
      tests/test_tutorial/test_request_files/test_tutorial002.py
  93. 2
      tests/test_tutorial/test_request_forms/test_tutorial001.py
  94. 2
      tests/test_tutorial/test_request_forms_and_files/test_tutorial001.py
  95. 2
      tests/test_tutorial/test_response_model/test_tutorial003.py
  96. 2
      tests/test_tutorial/test_response_model/test_tutorial004.py
  97. 2
      tests/test_tutorial/test_response_model/test_tutorial005.py
  98. 2
      tests/test_tutorial/test_response_model/test_tutorial006.py
  99. 2
      tests/test_tutorial/test_security/test_tutorial001.py
  100. 2
      tests/test_tutorial/test_security/test_tutorial003.py

2
docs/tutorial/first-steps.md

@ -92,7 +92,7 @@ It will show a JSON starting with something like:
{
"openapi": "3.0.2",
"info": {
"title": "Fast API",
"title": "FastAPI",
"version": "0.1.0"
},
"paths": {

2
fastapi/applications.py

@ -32,7 +32,7 @@ class FastAPI(Starlette):
debug: bool = False,
routes: List[BaseRoute] = None,
template_directory: str = None,
title: str = "Fast API",
title: str = "FastAPI",
description: str = "",
version: str = "0.1.0",
openapi_url: Optional[str] = "/openapi.json",

2
tests/test_additional_properties.py

@ -21,7 +21,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/foo": {
"post": {

2
tests/test_additional_response_extra.py

@ -20,7 +20,7 @@ app.include_router(router)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/items/": {
"get": {

2
tests/test_additional_responses_bad.py

@ -12,7 +12,7 @@ async def a():
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/a": {
"get": {

2
tests/test_additional_responses_custom_validationerror.py

@ -32,7 +32,7 @@ async def a(id):
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/a/{id}": {
"get": {

2
tests/test_additional_responses_default_validationerror.py

@ -11,7 +11,7 @@ async def a(id):
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/a/{id}": {
"get": {

2
tests/test_additional_responses_response_class.py

@ -37,7 +37,7 @@ async def b():
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/a": {
"get": {

2
tests/test_additional_responses_router.py

@ -37,7 +37,7 @@ app.include_router(router)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/a": {
"get": {

2
tests/test_application.py

@ -7,7 +7,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/api_route": {
"get": {

2
tests/test_custom_route_class.py

@ -47,7 +47,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/a/": {
"get": {

2
tests/test_extra_routes.py

@ -52,7 +52,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/items/{item_id}": {
"get": {

2
tests/test_filter_pydantic_sub_model.py

@ -33,7 +33,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/model": {
"get": {

2
tests/test_modules_same_name_body/test_main.py

@ -6,7 +6,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/a/compute": {
"post": {

2
tests/test_multi_body_errors.py

@ -23,7 +23,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/items/": {
"post": {

2
tests/test_multi_query_errors.py

@ -16,7 +16,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/items/": {
"get": {

2
tests/test_put_no_body.py

@ -14,7 +14,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/items/{item_id}": {
"put": {

2
tests/test_repeated_dependency_schema.py

@ -50,7 +50,7 @@ schema = {
},
}
},
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"openapi": "3.0.2",
"paths": {
"/": {

2
tests/test_response_class_no_mediatype.py

@ -37,7 +37,7 @@ async def b():
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/a": {
"get": {

2
tests/test_response_code_no_body.py

@ -38,7 +38,7 @@ async def b():
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/a": {
"get": {

2
tests/test_security_api_key_cookie.py

@ -26,7 +26,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/users/me": {
"get": {

2
tests/test_security_api_key_cookie_optional.py

@ -33,7 +33,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/users/me": {
"get": {

2
tests/test_security_api_key_header.py

@ -26,7 +26,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/users/me": {
"get": {

2
tests/test_security_api_key_header_optional.py

@ -32,7 +32,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/users/me": {
"get": {

2
tests/test_security_api_key_query.py

@ -26,7 +26,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/users/me": {
"get": {

2
tests/test_security_api_key_query_optional.py

@ -32,7 +32,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/users/me": {
"get": {

2
tests/test_security_http_base.py

@ -16,7 +16,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/users/me": {
"get": {

2
tests/test_security_http_base_optional.py

@ -22,7 +22,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/users/me": {
"get": {

2
tests/test_security_http_basic_optional.py

@ -22,7 +22,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/users/me": {
"get": {

2
tests/test_security_http_basic_realm.py

@ -19,7 +19,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/users/me": {
"get": {

2
tests/test_security_http_bearer.py

@ -16,7 +16,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/users/me": {
"get": {

2
tests/test_security_http_bearer_optional.py

@ -22,7 +22,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/users/me": {
"get": {

2
tests/test_security_http_digest.py

@ -16,7 +16,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/users/me": {
"get": {

2
tests/test_security_http_digest_optional.py

@ -22,7 +22,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/users/me": {
"get": {

2
tests/test_security_oauth2.py

@ -43,7 +43,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/login": {
"post": {

2
tests/test_security_oauth2_authorization_code_bearer.py

@ -20,7 +20,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/items/": {
"get": {

2
tests/test_security_oauth2_optional.py

@ -47,7 +47,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/login": {
"post": {

2
tests/test_security_oauth2_password_bearer_optional.py

@ -20,7 +20,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/items/": {
"get": {

2
tests/test_security_openid_connect.py

@ -26,7 +26,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/users/me": {
"get": {

2
tests/test_security_openid_connect_optional.py

@ -32,7 +32,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/users/me": {
"get": {

2
tests/test_starlette_exception.py

@ -29,7 +29,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/items/{item_id}": {
"get": {

2
tests/test_sub_callbacks.py

@ -62,7 +62,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/invoices/": {
"post": {

2
tests/test_tutorial/test_additional_responses/test_tutorial001.py

@ -6,7 +6,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/items/{item_id}": {
"get": {

2
tests/test_tutorial/test_additional_responses/test_tutorial002.py

@ -9,7 +9,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/items/{item_id}": {
"get": {

2
tests/test_tutorial/test_additional_responses/test_tutorial003.py

@ -6,7 +6,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/items/{item_id}": {
"get": {

2
tests/test_tutorial/test_additional_responses/test_tutorial004.py

@ -9,7 +9,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/items/{item_id}": {
"get": {

2
tests/test_tutorial/test_async_sql_databases/test_tutorial001.py

@ -4,7 +4,7 @@ from async_sql_databases.tutorial001 import app
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/notes/": {
"get": {

2
tests/test_tutorial/test_bigger_applications/test_main.py

@ -7,7 +7,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/users/": {
"get": {

2
tests/test_tutorial/test_body/test_tutorial001.py

@ -7,7 +7,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/items/": {
"post": {

2
tests/test_tutorial/test_body_fields/test_tutorial001.py

@ -17,7 +17,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/items/{item_id}": {
"put": {

2
tests/test_tutorial/test_body_multiple_params/test_tutorial001.py

@ -7,7 +7,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/items/{item_id}": {
"put": {

2
tests/test_tutorial/test_body_multiple_params/test_tutorial003.py

@ -7,7 +7,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/items/{item_id}": {
"put": {

2
tests/test_tutorial/test_body_nested_models/test_tutorial009.py

@ -6,7 +6,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/index-weights/": {
"post": {

2
tests/test_tutorial/test_body_updates/test_tutorial001.py

@ -6,7 +6,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/items/{item_id}": {
"get": {

2
tests/test_tutorial/test_cookie_params/test_tutorial001.py

@ -7,7 +7,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/items/": {
"get": {

2
tests/test_tutorial/test_custom_response/test_tutorial001.py

@ -6,7 +6,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/items/": {
"get": {

2
tests/test_tutorial/test_custom_response/test_tutorial004.py

@ -6,7 +6,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/items/": {
"get": {

2
tests/test_tutorial/test_dependencies/test_tutorial001.py

@ -7,7 +7,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/items/": {
"get": {

2
tests/test_tutorial/test_dependencies/test_tutorial004.py

@ -7,7 +7,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/items/": {
"get": {

2
tests/test_tutorial/test_dependencies/test_tutorial006.py

@ -6,7 +6,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/items/": {
"get": {

2
tests/test_tutorial/test_events/test_tutorial001.py

@ -4,7 +4,7 @@ from events.tutorial001 import app
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/items/{item_id}": {
"get": {

2
tests/test_tutorial/test_events/test_tutorial002.py

@ -4,7 +4,7 @@ from events.tutorial002 import app
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/items/": {
"get": {

2
tests/test_tutorial/test_extra_data_types/test_tutorial001.py

@ -7,7 +7,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/items/{item_id}": {
"put": {

2
tests/test_tutorial/test_extra_models/test_tutorial003.py

@ -6,7 +6,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/items/{item_id}": {
"get": {

2
tests/test_tutorial/test_extra_models/test_tutorial004.py

@ -6,7 +6,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/items/": {
"get": {

2
tests/test_tutorial/test_extra_models/test_tutorial005.py

@ -6,7 +6,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/keyword-weights/": {
"get": {

2
tests/test_tutorial/test_first_steps/test_tutorial001.py

@ -7,7 +7,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/": {
"get": {

2
tests/test_tutorial/test_handling_errors/test_tutorial001.py

@ -6,7 +6,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/items/{item_id}": {
"get": {

2
tests/test_tutorial/test_handling_errors/test_tutorial002.py

@ -6,7 +6,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/items-header/{item_id}": {
"get": {

2
tests/test_tutorial/test_handling_errors/test_tutorial003.py

@ -6,7 +6,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/unicorns/{name}": {
"get": {

2
tests/test_tutorial/test_handling_errors/test_tutorial004.py

@ -6,7 +6,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/items/{item_id}": {
"get": {

2
tests/test_tutorial/test_handling_errors/test_tutorial005.py

@ -6,7 +6,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/items/": {
"post": {

2
tests/test_tutorial/test_handling_errors/test_tutorial006.py

@ -6,7 +6,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/items/{item_id}": {
"get": {

2
tests/test_tutorial/test_header_params/test_tutorial001.py

@ -8,7 +8,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/items/": {
"get": {

2
tests/test_tutorial/test_openapi_callbacks/test_tutorial001.py

@ -6,7 +6,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/invoices/": {
"post": {

2
tests/test_tutorial/test_path_operation_advanced_configurations/test_tutorial001.py

@ -6,7 +6,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/items/": {
"get": {

2
tests/test_tutorial/test_path_operation_advanced_configurations/test_tutorial002.py

@ -6,7 +6,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/items/": {
"get": {

2
tests/test_tutorial/test_path_operation_advanced_configurations/test_tutorial003.py

@ -6,7 +6,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {},
}

2
tests/test_tutorial/test_path_operation_advanced_configurations/test_tutorial004.py

@ -6,7 +6,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/items/": {
"post": {

2
tests/test_tutorial/test_path_operation_configurations/test_tutorial005.py

@ -6,7 +6,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/items/": {
"post": {

2
tests/test_tutorial/test_path_operation_configurations/test_tutorial006.py

@ -7,7 +7,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/items/": {
"get": {

2
tests/test_tutorial/test_path_params/test_tutorial004.py

@ -6,7 +6,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/files/{file_path}": {
"get": {

2
tests/test_tutorial/test_path_params/test_tutorial005.py

@ -7,7 +7,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/model/{model_name}": {
"get": {

2
tests/test_tutorial/test_query_params/test_tutorial005.py

@ -7,7 +7,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/items/{item_id}": {
"get": {

2
tests/test_tutorial/test_query_params/test_tutorial006.py

@ -7,7 +7,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/items/{item_id}": {
"get": {

2
tests/test_tutorial/test_query_params/test_tutorial007.py

@ -6,7 +6,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/items/{item_id}": {
"get": {

2
tests/test_tutorial/test_query_params_str_validations/test_tutorial001.py

@ -7,7 +7,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/items/": {
"get": {

2
tests/test_tutorial/test_query_params_str_validations/test_tutorial011.py

@ -6,7 +6,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/items/": {
"get": {

2
tests/test_tutorial/test_query_params_str_validations/test_tutorial012.py

@ -6,7 +6,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/items/": {
"get": {

2
tests/test_tutorial/test_query_params_str_validations/test_tutorial013.py

@ -6,7 +6,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/items/": {
"get": {

2
tests/test_tutorial/test_request_files/test_tutorial001.py

@ -8,7 +8,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/files/": {
"post": {

2
tests/test_tutorial/test_request_files/test_tutorial002.py

@ -8,7 +8,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/files/": {
"post": {

2
tests/test_tutorial/test_request_forms/test_tutorial001.py

@ -7,7 +7,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/login/": {
"post": {

2
tests/test_tutorial/test_request_forms_and_files/test_tutorial001.py

@ -9,7 +9,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/files/": {
"post": {

2
tests/test_tutorial/test_response_model/test_tutorial003.py

@ -6,7 +6,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/user/": {
"post": {

2
tests/test_tutorial/test_response_model/test_tutorial004.py

@ -7,7 +7,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/items/{item_id}": {
"get": {

2
tests/test_tutorial/test_response_model/test_tutorial005.py

@ -6,7 +6,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/items/{item_id}/name": {
"get": {

2
tests/test_tutorial/test_response_model/test_tutorial006.py

@ -6,7 +6,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/items/{item_id}/name": {
"get": {

2
tests/test_tutorial/test_security/test_tutorial001.py

@ -6,7 +6,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/items/": {
"get": {

2
tests/test_tutorial/test_security/test_tutorial003.py

@ -6,7 +6,7 @@ client = TestClient(app)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/token": {
"post": {

Some files were not shown because too many files changed in this diff

Loading…
Cancel
Save