/usr/share/pyshared/z3c/macro/tests.py is in python-z3c.macro 1.4.2-0ubuntu2.
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 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 | ##############################################################################
#
# Copyright (c) 2004 Zope Foundation and Contributors.
# 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.
#
##############################################################################
"""Viewlet tests
$Id: tests.py 124402 2012-02-15 18:00:33Z menesis $
"""
__docformat__ = 'restructuredtext'
from zope.app.testing import setup
from zope.configuration import xmlconfig
import doctest
import itertools
import unittest
import z3c.macro.tales
import z3c.macro.zcml
def setUp(test):
root = setup.placefulSetUp(site=True)
test.globs['root'] = root
def setUpZPT(test):
setUp(test)
from zope.browserpage import metaconfigure
metaconfigure.registerType('macro', z3c.macro.tales.MacroExpression)
def setUpZ3CPT(suite):
setUp(suite)
import z3c.pt
import z3c.ptcompat
xmlconfig.XMLConfig('configure.zcml', z3c.pt)()
xmlconfig.XMLConfig('configure.zcml', z3c.ptcompat)()
def tearDown(test):
setup.placefulTearDown()
def test_suite():
tests = ((
doctest.DocFileSuite('README.txt',
setUp=setUp, tearDown=tearDown,
optionflags=doctest.NORMALIZE_WHITESPACE|doctest.ELLIPSIS,
),
doctest.DocFileSuite('zcml.txt', setUp=setUp, tearDown=tearDown,
optionflags=doctest.NORMALIZE_WHITESPACE|doctest.ELLIPSIS,),
) for setUp in (setUpZ3CPT, setUpZPT))
return unittest.TestSuite(itertools.chain(*tests))
if __name__ == '__main__':
unittest.main(defaultTest='test_suite')
|