blob: b768c39c18b07fc58434ca75b2af9b8e10580392 [file] [log] [blame]
from nose.tools import *
import networkx as nx
import networkx.algorithms.approximation as a
def test_min_maximal_matching():
# smoke test
G = nx.Graph()
assert_equal(len(a.min_maximal_matching(G)),0)