Coverage for tests / test_tutorial / test_python_types / test_tutorial007.py: 100%

5 statements  

« prev     ^ index     » next       coverage.py v7.13.3, created at 2026-04-06 01:24 +0000

1from docs_src.python_types.tutorial007_py310 import process_items 1efgh

2 

3 

4def test_process_items(): 1efgh

5 items_t = (1, 2, "foo") 1abcd

6 items_s = {b"a", b"b", b"c"} 1abcd

7 

8 assert process_items(items_t, items_s) == (items_t, items_s) 1abcd