This file is indexed.

/usr/share/pyshared/zope/app/pagetemplate/tests/test_namedtemplate.py is in python-zope.app.pagetemplate 3.11.2-0ubuntu4.

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
"""Test that the BBB imports in the namedtemplate module work.
"""
__docformat__ = "reStructuredText"

import unittest

from zope.component.testing import PlacelessSetup
class Test(PlacelessSetup, unittest.TestCase):

    def testImportNamedtemplateModule(self):
        from zope.app.pagetemplate import namedtemplate

def test_suite():
    loader=unittest.TestLoader()
    return loader.loadTestsFromTestCase(Test)