This repository has been archived on 2023-03-25. You can view files and clone it, but cannot push or open issues or pull requests.
mightyscape-1.1-deprecated/extensions/networkx/algorithms/tests/test_triads.py
2020-07-30 01:16:18 +02:00

25 lines
864 B
Python

# test_triads.py - unit tests for the triads module
#
# Copyright 2015 NetworkX developers.
# Copyright 2009 Diederik van Liere <diederik.vanliere@rotman.utoronto.ca>.
#
# This file is part of NetworkX.
#
# NetworkX is distributed under a BSD license; see LICENSE.txt for more
# information.
"""Unit tests for the :mod:`networkx.algorithms.triads` module."""
import networkx as nx
def test_triadic_census():
"""Tests the triadic census function."""
G = nx.DiGraph()
G.add_edges_from(['01', '02', '03', '04', '05', '12', '16', '51', '56',
'65'])
expected = {'030T': 2, '120C': 1, '210': 0, '120U': 0, '012': 9, '102': 3,
'021U': 0, '111U': 0, '003': 8, '030C': 0, '021D': 9, '201': 0,
'111D': 1, '300': 0, '120D': 0, '021C': 2}
actual = nx.triadic_census(G)
assert expected == actual