Server IP : 209.38.156.173 / Your IP : 216.73.216.122 [ Web Server : Apache/2.4.52 (Ubuntu) System : Linux lakekumayuhotel 5.15.0-136-generic #147-Ubuntu SMP Sat Mar 15 15:53:30 UTC 2025 x86_64 User : root ( 0) PHP Version : 8.1.2-1ubuntu2.22 Disable Function : NONE Domains : 2 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/lib/python3/dist-packages/twisted/trial/test/__pycache__/ |
Upload File : |
o �b+ � @ sj d Z ddlZddlZddlmZ ddlmZ dZe� dd�Z dZd ZG d d� dej �ZG dd � d e�ZdS )zf Classes and functions used by L{twisted.trial.test.test_util} and L{twisted.trial.test.test_loader}. � N)�invalidate_caches)�unittestzv from twisted.trial import unittest class FooTest(unittest.SynchronousTestCase): def testFoo(self): pass � z a� '''This module is used by test_loader to test the Trial test loading functionality. Do NOT change the number of tests in this module. Do NOT change the names the tests in this module. ''' import unittest as pyunit from twisted.trial import unittest class FooTest(unittest.SynchronousTestCase): def test_foo(self): pass def test_bar(self): pass class PyunitTest(pyunit.TestCase): def test_foo(self): pass def test_bar(self): pass class NotATest: def test_foo(self): pass class AlphabetTest(unittest.SynchronousTestCase): def test_a(self): pass def test_b(self): pass def test_c(self): pass az '''This module is used by test_loader to test the Trial test loading functionality. Do NOT change the number of tests in this module. Do NOT change the names the tests in this module. ''' from twisted.trial import unittest class X: def test_foo(self): pass class A(unittest.SynchronousTestCase, X): pass class B(unittest.SynchronousTestCase, X): pass c @ s� e Zd Zddddddddd d efddefd defddefddefgZdd� Zdd� Z dd� Z d#dd�Zdd� Zd$dd �Z d!d"� ZdS )%�PackageTest)zbadpackage/__init__.py�frotz )zbadpackage/test_module.py� )zunimportablepackage/__init__.pyr )z"unimportablepackage/test_module.pyzimport notarealmoduleok )zpackage2/__init__.pyr )zpackage2/test_module.pyz import frotz )zpackage/__init__.pyr )zpackage/frotz.pyr )zpackage/test_bad_module.pyz%raise ZeroDivisionError("fake error")zpackage/test_dos_module.py)zpackage/test_import_module.pyzimport frotzzpackage/test_module.py)zgoodpackage/__init__.pyr zgoodpackage/test_sample.py)zgoodpackage/sub/__init__.pyr zgoodpackage/sub/test_sample.py)zinheritancepackage/__init__.pyr zinheritancepackage/test_x.pyc C s<