Completed
Push — master ( ecd8ea...ea1ba2 )
by Max
02:09
created

test_import_abc()   A

Complexity

Conditions 2

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 2
c 1
b 0
f 0
dl 0
loc 3
rs 10
1
def test_import_compat(compat):
2
    """Test the module is importable. See conftest.py for the actual import."""
3
    assert compat
4
5
6
def test_import_abc(abc):
7
    """Test the module is importable. See conftest.py for the actual import."""
8
    assert abc
9
10
11
def test_has_class(abc):
12
    assert abc.NamespaceableABC
13