/usr/share/pyshared/pycountry/tests.py is in python-pycountry 0.14.1+ds1-2.
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 | # vim:fileencoding=utf-8
# Copyright (c) 2008 gocept gmbh & co. kg
# See also LICENSE.txt
# $Id$
"""Test harness for pycountry."""
import doctest
import unittest
def test_suite():
suite = unittest.TestSuite()
suite.addTest(doctest.DocFileSuite('README.txt',
optionflags=doctest.ELLIPSIS))
return suite
|