Codebase list python-mockito / 58bd4f4 tests / conftest.py
58bd4f4

Tree @58bd4f4 (Download .tar.gz)

conftest.py @58bd4f4raw · history · blame

1
2
3
4
5
6
7
8
import pytest


@pytest.fixture
def unstub():
    from mockito import unstub
    yield
    unstub()