(assy_fixture, count, request)
| 1594 | [("simple_assy", 3), ("nested_assy", 3), ("empty_top_assy", 1),], |
| 1595 | ) |
| 1596 | def test_leaf_node_count(assy_fixture, count, request): |
| 1597 | |
| 1598 | assy = request.getfixturevalue(assy_fixture) |
| 1599 | _, doc = toCAF(assy, True) |
| 1600 | |
| 1601 | assert len(get_doc_nodes(doc, True)) == count |
| 1602 | |
| 1603 | |
| 1604 | def check_assy(assy, assy_i): |
nothing calls this directly
no test coverage detected