test_import.py 220 B

1234567891011
  1. import pytest
  2. def test_namespace_alias():
  3. with pytest.raises(ImportError):
  4. from networkx import nx
  5. def test_namespace_nesting():
  6. with pytest.raises(ImportError):
  7. from networkx import networkx