Browse Source
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Alejandra <[email protected]>pull/13378/head
committed by
GitHub
5 changed files with 23 additions and 51 deletions
@ -1,10 +0,0 @@ |
|||
from docs_src.app_testing.app_b_an import test_main |
|||
|
|||
|
|||
def test_app(): |
|||
test_main.test_create_existing_item() |
|||
test_main.test_create_item() |
|||
test_main.test_create_item_bad_token() |
|||
test_main.test_read_nonexistent_item() |
|||
test_main.test_read_item() |
|||
test_main.test_read_item_bad_token() |
@ -1,13 +0,0 @@ |
|||
from ...utils import needs_py310 |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_app(): |
|||
from docs_src.app_testing.app_b_an_py310 import test_main |
|||
|
|||
test_main.test_create_existing_item() |
|||
test_main.test_create_item() |
|||
test_main.test_create_item_bad_token() |
|||
test_main.test_read_nonexistent_item() |
|||
test_main.test_read_item() |
|||
test_main.test_read_item_bad_token() |
@ -1,13 +0,0 @@ |
|||
from ...utils import needs_py39 |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_app(): |
|||
from docs_src.app_testing.app_b_an_py39 import test_main |
|||
|
|||
test_main.test_create_existing_item() |
|||
test_main.test_create_item() |
|||
test_main.test_create_item_bad_token() |
|||
test_main.test_read_nonexistent_item() |
|||
test_main.test_read_item() |
|||
test_main.test_read_item_bad_token() |
@ -1,13 +0,0 @@ |
|||
from ...utils import needs_py310 |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_app(): |
|||
from docs_src.app_testing.app_b_py310 import test_main |
|||
|
|||
test_main.test_create_existing_item() |
|||
test_main.test_create_item() |
|||
test_main.test_create_item_bad_token() |
|||
test_main.test_read_nonexistent_item() |
|||
test_main.test_read_item() |
|||
test_main.test_read_item_bad_token() |
Loading…
Reference in new issue