/usr/share/pyshared/couchdb/tests/http.py is in python-couchdb 0.8-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 | # -*- coding: utf-8 -*-
#
# Copyright (C) 2009 Christopher Lenz
# All rights reserved.
#
# This software is licensed as described in the file COPYING, which
# you should have received as part of this distribution.
import doctest
import unittest
from couchdb import http
def suite():
suite = unittest.TestSuite()
suite.addTest(doctest.DocTestSuite(http))
return suite
if __name__ == '__main__':
unittest.main(defaultTest='suite')
|