(self)
| 1371 | self.session.load() |
| 1372 | |
| 1373 | async def test_aload(self): |
| 1374 | msg = self.not_implemented_msg % "a load" |
| 1375 | with self.assertRaisesMessage(NotImplementedError, msg): |
| 1376 | await self.session.aload() |
| 1377 | |
| 1378 | def test_save(self): |
| 1379 | msg = self.not_implemented_msg % "a save" |
nothing calls this directly
no test coverage detected