Library for mocking AsyncIOMotorClient built on top of mongomock.
Project description
mongomock-motor
Best effort mock for AsyncIOMotorClient (Database, Collection, e.t.c) built on top of mongomock library.
Example / Showcase
from mongomock_motor import AsyncMongoMockClient
async def test_mock_client():
collection = AsyncMongoMockClient()['tests']['test-1']
assert await collection.find({}).to_list(None) == []
result = await collection.insert_one({'a': 1})
assert result.inserted_id
assert len(await collection.find({}).to_list(None)) == 1
License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
mongomock_motor-0.0.34.tar.gz
(5.0 kB
view hashes)
Built Distribution
Close
Hashes for mongomock_motor-0.0.34-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f14b131cbbaae26104c4e5c3e7d70452ab743b284fd52fc10fac668e9c6b0575 |
|
MD5 | 4e88be01d53c7536fb0bb063ba2d8509 |
|
BLAKE2b-256 | cbaf21377db03f0536950179ec6eedb4b72bb8eaa3e6cb7d3a1c8bf13f221a53 |