Reto del test para actualizar una tarea que no existe:
def test_update_not_found(self):
def test_update_not_found(self):
data = {
'title': 'Nuevo titulo'
}
new_path = self.path + '/100'
response = self.client.put(path=new_path, data=json.dumps(data), content_type=self.content_type)
self.assertEqual(response.status_code, 404)