blob: 6fc51ae18f89dc33aaa4c89e8bf9b93edc41f4b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
"""Unit tests for the :mod:`networkx.generators.triads` module."""
import pytest
from networkx import triad_graph
def test_triad_graph():
G = triad_graph("030T")
assert [tuple(e) for e in ("ab", "ac", "cb")] == sorted(G.edges())
def test_invalid_name():
with pytest.raises(ValueError):
triad_graph("bogus")
|