Spaces:
Sleeping
Sleeping
File size: 363 Bytes
b200bda |
1 2 3 4 5 6 7 8 9 10 11 12 |
import pytest
def test_utils_namespace():
"""Ensure objects are not unintentionally exposed in utils namespace."""
with pytest.raises(ImportError):
from networkx.utils import nx
with pytest.raises(ImportError):
from networkx.utils import sys
with pytest.raises(ImportError):
from networkx.utils import defaultdict, deque
|