def test_empty_list(self): #given #when todoList = TodoList() #then self.assertTrue(todoList.is_empty())
def test_add_task(self): #given todoList = TodoList() #when todoList.add_task('afeitar al gato') #then self.assertFalse(todoList.is_empty()) self.assertEquals('afeitar al gato', todoList.first_task())