1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
r"""*pytest configuration for the* ``stdio_mgr`` *test suite*.
``stdio_mgr`` provides a context manager for convenient
mocking and/or wrapping of ``stdin``/``stdout``/``stderr``
interactions.
**Author**
Brian Skinn (bskinn@alum.mit.edu)
**File Created**
6 Feb 2019
**Copyright**
\(c) Brian Skinn 2018-2019
**Source Repository**
http://www.github.com/bskinn/stdio-mgr
**Documentation**
See README.rst at the GitHub repository
**License**
The MIT License; see |license_txt|_ for full license terms
**Members**
"""
import pytest
from stdio_mgr import stdio_mgr
@pytest.fixture(autouse=True)
def add_stdio_mgr(doctest_namespace):
doctest_namespace["stdio_mgr"] = stdio_mgr
|