Diff of /tests/test_basic.py [000000] .. [121e55]

Switch to side-by-side view

--- a
+++ b/tests/test_basic.py
@@ -0,0 +1,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.