blob: 7af081c4871e1e3435668cd62200080c72719955 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
"""Original NetworkX graph tests"""
import networkx
import networkx as nx
from .historical_tests import HistoricalTests
class TestGraphHistorical(HistoricalTests):
@classmethod
def setup_class(cls):
HistoricalTests.setup_class()
cls.G = nx.Graph
|