(self)
| 79 | ) |
| 80 | |
| 81 | def test_no_dependencies(self): |
| 82 | self._test_graph({1: {2}, 3: {4}, 5: {6}}, [(2, 4, 6), (1, 3, 5)]) |
| 83 | |
| 84 | self._test_graph({1: set(), 3: set(), 5: set()}, [(1, 3, 5)]) |
| 85 | |
| 86 | def test_the_node_multiple_times(self): |
| 87 | # Test same node multiple times in dependencies |
nothing calls this directly
no test coverage detected