X-Git-Url: https://plomlompom.com/repos/condition_titles?a=blobdiff_plain;f=tests%2Ftodos.py;h=7632f39cf3b75674036452b609c7e90b3f379e34;hb=8f28c8c685fa91b9cbabb4b424da4091e52058cf;hp=56aaf48ccc1faa917b23fd89443678efa049c396;hpb=25b71c6f0b10db05907128daf50c6e543e514c35;p=plomtask diff --git a/tests/todos.py b/tests/todos.py index 56aaf48..7632f39 100644 --- a/tests/todos.py +++ b/tests/todos.py @@ -206,6 +206,7 @@ class TestsWithDB(TestCaseWithDB, TestCaseSansDB): """Test removal.""" todo_1 = Todo(None, self.proc, False, self.date1) todo_1.save(self.db_conn) + assert todo_1.id_ is not None todo_0 = Todo(None, self.proc, False, self.date1) todo_0.save(self.db_conn) todo_0.add_child(todo_1) @@ -233,6 +234,7 @@ class TestsWithDB(TestCaseWithDB, TestCaseSansDB): todo_1.comment = 'foo' todo_1.effort = -0.1 todo_1.save(self.db_conn) + assert todo_1.id_ is not None Todo.by_id(self.db_conn, todo_1.id_) todo_1.comment = '' todo_1_id = todo_1.id_