Linux server1.dn-server.com 4.18.0-553.89.1.lve.el8.x86_64 #1 SMP Wed Dec 10 13:58:50 UTC 2025 x86_64
LiteSpeed
Server IP : 195.201.204.189 & Your IP : 216.73.216.60
Domains :
Cant Read [ /etc/named.conf ]
User : beriska1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
python33 /
lib64 /
python3.3 /
lib2to3 /
tests /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2026-05-01 04:20
data
[ DIR ]
drwxr-xr-x
2026-05-01 04:20
__init__.py
673
B
-rw-r--r--
2024-04-17 20:28
pytree_idempotency.py
2.36
KB
-rwxr-xr-x
2024-04-17 20:28
support.py
1.67
KB
-rw-r--r--
2024-04-17 20:28
test_all_fixers.py
517
B
-rw-r--r--
2024-04-17 20:28
test_fixers.py
117.24
KB
-rw-r--r--
2024-04-17 20:28
test_main.py
5.61
KB
-rw-r--r--
2024-04-17 20:28
test_parser.py
6.66
KB
-rw-r--r--
2024-04-17 20:28
test_pytree.py
16.06
KB
-rw-r--r--
2024-04-17 20:28
test_refactor.py
11.57
KB
-rw-r--r--
2024-04-17 20:28
test_util.py
20.74
KB
-rw-r--r--
2024-04-17 20:28
Save
Rename
"""Make tests/ into a package. This allows us to "import tests" and have tests.all_tests be a TestSuite representing all test cases from all test_*.py files in tests/.""" # Author: Collin Winter import os import os.path import unittest import types from . import support all_tests = unittest.TestSuite() tests_dir = os.path.join(os.path.dirname(__file__), '..', 'tests') tests = [t[0:-3] for t in os.listdir(tests_dir) if t.startswith('test_') and t.endswith('.py')] loader = unittest.TestLoader() for t in tests: __import__("",globals(),locals(),[t],level=1) mod = globals()[t] all_tests.addTests(loader.loadTestsFromModule(mod))