File size: 220 Bytes
1e321d6 | 1 2 3 4 5 6 7 8 9 10 11 12 | import pytest
def test_namespace_alias():
with pytest.raises(ImportError):
from networkx import nx
def test_namespace_nesting():
with pytest.raises(ImportError):
from networkx import networkx
|