OXIESEC PANEL
- Current Dir:
/
/
usr
/
lib
/
python3
/
dist-packages
/
twisted
/
trial
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
03/31/2022 06:22:38 AM
rwxr-xr-x
📄
__init__.py
1.99 KB
09/08/2017 10:38:36 AM
rw-r--r--
📄
__main__.py
249 bytes
09/08/2017 10:38:35 AM
rw-r--r--
📁
__pycache__
-
03/31/2022 06:22:40 AM
rwxr-xr-x
📄
_asyncrunner.py
4.42 KB
09/08/2017 10:38:36 AM
rw-r--r--
📄
_asynctest.py
14.29 KB
09/08/2017 10:38:36 AM
rw-r--r--
📁
_dist
-
03/31/2022 06:22:38 AM
rwxr-xr-x
📄
_synctest.py
48.84 KB
09/08/2017 10:38:36 AM
rw-r--r--
📄
itrial.py
6.7 KB
09/08/2017 10:38:36 AM
rw-r--r--
📄
reporter.py
39.17 KB
09/08/2017 10:38:36 AM
rw-r--r--
📄
runner.py
34.43 KB
09/08/2017 10:38:36 AM
rw-r--r--
📁
test
-
03/31/2022 06:22:38 AM
rwxr-xr-x
📄
unittest.py
978 bytes
09/08/2017 10:38:36 AM
rw-r--r--
📄
util.py
13.1 KB
09/08/2017 10:38:36 AM
rw-r--r--
Editing: unittest.py
Close
# -*- test-case-name: twisted.trial.test -*- # Copyright (c) Twisted Matrix Laboratories. # See LICENSE for details. """ Things likely to be used by writers of unit tests. """ from __future__ import division, absolute_import # Define the public API from the two implementation modules from twisted.trial._synctest import ( FailTest, SkipTest, SynchronousTestCase, PyUnitResultAdapter, Todo, makeTodo) from twisted.trial._asynctest import TestCase from twisted.trial._asyncrunner import ( TestSuite, TestDecorator, decorate) # Further obscure the origins of these objects, to reduce surprise (and this is # what the values were before code got shuffled around between files, but was # otherwise unchanged). FailTest.__module__ = SkipTest.__module__ = __name__ __all__ = [ 'decorate', 'FailTest', 'makeTodo', 'PyUnitResultAdapter', 'SkipTest', 'SynchronousTestCase', 'TestCase', 'TestDecorator', 'TestSuite', 'Todo', ]