文件操作 - packages.cpython-310.pyc
返回文件管理
返回主菜单
删除本文件
文件: /usr/lib/python3/dist-packages/twisted/trial/test/__pycache__/packages.cpython-310.pyc
编辑文件内容
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<