-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
43 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
r"""``unittest`` *tests for MicroPython, for* ``stdio-mgr``. | ||
``stdio_mgr`` provides a context manager for convenient | ||
mocking and/or wrapping of ``stdin``/``stdout``/``stderr`` | ||
interactions. | ||
**Author** | ||
Brian Skinn ([email protected]) | ||
**File Created** | ||
12 Sep 2019 | ||
**Copyright** | ||
\(c) Brian Skinn 2018-2019 | ||
**Source Repository** | ||
http://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 unittest as ut | ||
|
||
|
||
class TestDummyTest(ut.TestCase): | ||
"""Initial stub test to confirm unittest suite is working.""" | ||
|
||
def test_dummy_test(self): | ||
"""Confirm that a trivial test passes.""" | ||
self.assertTrue(True) | ||
|
||
|
||
if __name__ == "__main__": | ||
ut.main() |