def testGet(self):
assert self.app.get("/events/1").status_code == 404
exampleEvent = generateExampleEvent(self.db)
self.db.event.insert_one(exampleEvent)
newEvent = json.loads(self.app.get("/events/"+str(exampleEvent['_id'])).data.decode("utf-8"))
assert areDicsEqual(exampleEvent, newEvent)
评论列表
文章目录