(self)
| 81 | db: Database |
| 82 | |
| 83 | def setUp(self): |
| 84 | super().setUp() |
| 85 | self.db = MongoClient(connect=False).pymongo_test |
| 86 | |
| 87 | def test_gridfs(self): |
| 88 | self.assertRaises(TypeError, gridfs.GridFS, "foo") |
nothing calls this directly
no test coverage detected