Total Complexity | 1 |
Total Lines | 8 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | import pytest |
||
2 | from mongomantic import connect |
||
3 | |||
4 | |||
5 | @pytest.fixture(scope="module") |
||
6 | def mongodb(): |
||
7 | connect("localhost:27017", "test", mock=True) |
||
8 |