[a2a3e7]: / tests / test_basic.py

Download this file

13 lines (7 with data), 270 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
import pytest
import nichecompass
def test_package_has_version():
assert nichecompass.__version__ is not None
@pytest.mark.skip(reason="This decorator should be removed when test passes.")
def test_example():
assert 1 == 0 # This test is designed to fail.