summaryrefslogtreecommitdiff
path: root/networkx/tests/test_import.py
blob: 32aafdf2a4dafc85cee088138590b84f4c627b5e (plain)
1
2
3
4
5
6
7
8
9
10
11
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