MCPcopy
hub / github.com/networkx/networkx / test_is_directed

Method test_is_directed

networkx/classes/tests/test_function.py:78–80  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

76 assert self.DG.number_of_edges() == nx.number_of_edges(self.DG)
77
78 def test_is_directed(self):
79 assert self.G.is_directed() == nx.is_directed(self.G)
80 assert self.DG.is_directed() == nx.is_directed(self.DG)
81
82 def test_add_star(self):
83 G = self.G.copy()

Callers

nothing calls this directly

Calls 1

is_directedMethod · 0.45

Tested by

no test coverage detected