(pytester: Pytester)
| 1105 | |
| 1106 | |
| 1107 | def test_modulecol_roundtrip(pytester: Pytester) -> None: |
| 1108 | modcol = pytester.getmodulecol("pass", withinit=False) |
| 1109 | trail = modcol.nodeid |
| 1110 | newcol = modcol.session.perform_collect([trail], genitems=0)[0] |
| 1111 | assert modcol.name == newcol.name |
| 1112 | |
| 1113 | |
| 1114 | class TestTracebackCutting: |
nothing calls this directly
no test coverage detected
searching dependent graphs…