| # conftest.py | |
| import pytest | |
| def unstub(): | |
| """Ensure calls patched by mockito are cleared after each test""" | |
| from mockito import unstub | |
| yield | |
| unstub() | |
| # conftest.py | |
| import pytest | |
| def unstub(): | |
| """Ensure calls patched by mockito are cleared after each test""" | |
| from mockito import unstub | |
| yield | |
| unstub() | |