diff --git a/tests/quarkify.py b/tests/quarkify.py index ddf33ee..c3684aa 100644 --- a/tests/quarkify.py +++ b/tests/quarkify.py @@ -18,9 +18,14 @@ def test_positive(): def test_negative(): - result = quarkify.extract_quarks(''' - testing - - ''') + skips = False + + try: + quarkify.extract_quarks(''' + testing + + ''') + except quarkify.Quarkless: + skips = True - assert result.get("live", False) is False + assert skips