()
| 934 | |
| 935 | |
| 936 | def test_mangle_test_address() -> None: |
| 937 | from _pytest.junitxml import mangle_test_address |
| 938 | |
| 939 | address = "::".join(["a/my.py.thing.py", "Class", "method", "[a-1-::]"]) |
| 940 | newnames = mangle_test_address(address) |
| 941 | assert newnames == ["a.my.py.thing", "Class", "method", "[a-1-::]"] |
| 942 | |
| 943 | |
| 944 | def test_dont_configure_on_workers(tmp_path: Path) -> None: |
nothing calls this directly
no test coverage detected