__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
# -*- 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 twisted.trial._asyncrunner import TestDecorator, TestSuite, decorate
from twisted.trial._asynctest import TestCase
# Define the public API from the two implementation modules
from twisted.trial._synctest import (
FailTest,
PyUnitResultAdapter,
SkipTest,
SynchronousTestCase,
Todo,
makeTodo,
)
# 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",
]
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| __pycache__ | Folder | 0755 |
|
|
| _dist | Folder | 0755 |
|
|
| newsfragments | Folder | 0755 |
|
|
| test | Folder | 0755 |
|
|
| __init__.py | File | 1.99 KB | 0644 |
|
| __main__.py | File | 179 B | 0644 |
|
| _asyncrunner.py | File | 4.45 KB | 0644 |
|
| _asynctest.py | File | 14.13 KB | 0644 |
|
| _synctest.py | File | 52.74 KB | 0644 |
|
| itrial.py | File | 4.3 KB | 0644 |
|
| reporter.py | File | 39.98 KB | 0644 |
|
| runner.py | File | 33.22 KB | 0644 |
|
| unittest.py | File | 937 B | 0644 |
|
| util.py | File | 12.9 KB | 0644 |
|