From 73f60936728cce9ed497b4b4475cb8cfc06fa6c1 Mon Sep 17 00:00:00 2001 From: ReTeam Labs Date: Thu, 2 Apr 2020 22:27:09 +0100 Subject: [PATCH] Empty test file --- tests/tests.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/tests/tests.py b/tests/tests.py index f618c0ff..e69de29b 100644 --- a/tests/tests.py +++ b/tests/tests.py @@ -1,10 +0,0 @@ -import pytest -from src.regular_class import RegularClass - -class TestApp(): - def test_task_one(self): - with pytest.raises(NotImplementedError) as e: - regular = RegularClass() - assert regular.__str__(), "Failed to raise the correct error type" - assert str(e.value) == "Method not implemented", "Error message does not match 'Method not implemented'" -