(self)
| 126 | self.assertEqual(b"", await g.read(0)) |
| 127 | |
| 128 | async def test_md5(self): |
| 129 | f = AsyncGridIn(self.db.fs) |
| 130 | await f.write(b"hello world\n") |
| 131 | await f.close() |
| 132 | self.assertEqual(None, f.md5) |
| 133 | |
| 134 | async def test_alternate_collection(self): |
| 135 | await self.db.alt.files.delete_many({}) |
nothing calls this directly
no test coverage detected