MCPcopy Index your code
hub / github.com/python/cpython / test_no_dependencies

Method test_no_dependencies

Lib/test/test_graphlib.py:81–84  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 2

_test_graphMethod · 0.95
setFunction · 0.85

Tested by

no test coverage detected