()
| 2447 | |
| 2448 | @_needs_dm |
| 2449 | def test_dm_no_dangling_edges(): |
| 2450 | r = extract_dm(FIXTURES / "sample.dm") |
| 2451 | node_ids = {n["id"] for n in r["nodes"]} |
| 2452 | for e in r["edges"]: |
| 2453 | assert e["source"] in node_ids |
| 2454 | |
| 2455 | @_needs_dm |
| 2456 | def test_dm_super_call_not_emitted(): |
nothing calls this directly
no test coverage detected