X-Git-Url: https://plomlompom.com/repos/berlin_corona.txt?a=blobdiff_plain;f=tests%2Fdays.py;h=6a8773663032310d3b5d8cf73fcae92a27ec6cbe;hb=02aa60b59cea2c0401efd785f3bb5d06aec7bf4d;hp=901667f4c6e0276a2800bf4b21b15b03a17be2fb;hpb=db62e6559fdd577dae38d4b6f5cbd5ef6a14cc57;p=plomtask diff --git a/tests/days.py b/tests/days.py index 901667f..6a87736 100644 --- a/tests/days.py +++ b/tests/days.py @@ -53,10 +53,6 @@ class TestsWithDB(TestCaseWithDB): kwargs = {'date': self.default_ids[0], 'comment': 'foo'} self.check_saving_and_caching(**kwargs) - def test_Day_from_table_row(self) -> None: - """Test .from_table_row() properly reads in class from DB""" - self.check_from_table_row() - def test_Day_by_id(self) -> None: """Test .by_id().""" self.check_by_id() @@ -98,10 +94,6 @@ class TestsWithDB(TestCaseWithDB): """Test .remove() effects on DB and cache.""" self.check_remove() - def test_Day_singularity(self) -> None: - """Test pointers made for single object keep pointing to it.""" - self.check_singularity('day_comment', 'boo') - class TestsWithServer(TestCaseWithServer): """Tests against our HTTP server/handler (and database)."""