/usr/share/pyshared/zope/testing/tests.py is in python-zope.testing 3.10.2-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | ##############################################################################
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
"""Tests for the testing framework.
"""
import re
import unittest
import warnings
from zope.testing import renormalizing
# Yes, it is deprecated, but we want to run tests on it here.
warnings.filterwarnings("ignore", "zope.testing.doctest is deprecated",
DeprecationWarning, __name__, 0)
from zope.testing import doctest
def test_suite():
return unittest.TestSuite((
doctest.DocTestSuite('zope.testing.loggingsupport'),
doctest.DocTestSuite('zope.testing.renormalizing'),
doctest.DocTestSuite('zope.testing.server'),
doctest.DocFileSuite('doctest.txt'),
doctest.DocFileSuite('formparser.txt'),
doctest.DocFileSuite(
'module.txt',
# when this test is run in isolation, the error message shows the
# module name as fully qualified; when it is run as part of the
# full test suite, the error message shows the module name as
# relative.
checker=renormalizing.RENormalizing([
(re.compile('No module named zope.testing.unlikelymodulename'),
'No module named unlikelymodulename')])),
doctest.DocFileSuite('setupstack.txt'),
doctest.DocTestSuite(doctest, optionflags=doctest.INTERPRET_FOOTNOTES),
))
|