(db)
| 597 | @requireCapability(dialect="sqlite") |
| 598 | @pytest.mark.asyncio |
| 599 | async def test_recursive(db) -> None: |
| 600 | file = "examples/relations_recursive.py" |
| 601 | r = subprocess.run([sys.executable, file], capture_output=True, text=True) # nosec |
| 602 | assert r.returncode == 0, f"Script failed (rc={r.returncode}): {r.stderr}" |
| 603 | output = r.stdout |
| 604 | s = "2.1. Second H2 (to: ) (from: 2.2. Third H2, Loose, 1.1. First H2)" |
| 605 | assert s in output |
nothing calls this directly
no test coverage detected
searching dependent graphs…