/
usr
/
local
/
lib
/
python3.6
/
site-packages
/
asynctest
/
/usr/local/lib/python3.6/site-packages/asynctest
mkdir
upload
Name
Size
Mode
Actions
__pycache__/
-
0755
rm
case.py
17653
0644
edit
dl
rm
helpers.py
527
0644
edit
dl
rm
mock.py
48928
0644
edit
dl
rm
selector.py
11692
0644
edit
dl
rm
_fail_on.py
4265
0644
edit
dl
rm
__init__.py
884
0644
edit
dl
rm
Edit:
/usr/local/lib/python3.6/site-packages/asynctest/__init__.py
(884B)
# coding: utf-8 # flake8: noqa """ The package asynctest is built on top of the standard :mod:`unittest` module and cuts down boilerplate code when testing libraries for :mod:`asyncio`. asynctest imports the standard unittest package, overrides some of its features and adds new ones. A test author can import asynctest in place of :mod:`unittest` safely. It is divided in submodules, but they are all imported at the top level, so :class:`asynctest.case.TestCase` is equivalent to :class:`asynctest.TestCase`. Currently, asynctest targets the "selector" model. Hence, some features will not (yet) work with Windows' proactor. """ import unittest from unittest import * # Shadows unittest with our enhanced classes from .case import * from .mock import * # And load or own tools from ._fail_on import * from .helpers import * from .selector import * __all__ = unittest.__all__
Save
cmd:
run