This file is indexed.

/usr/share/pyshared/pycocumalib/testall.py is in pycocuma 0.4.5-6-7.

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
#!/usr/bin/python
"""
Run all PyCoCuMa Unit Tests
"""
#  Copyright (C) 2004  Henning Jacobs <henning@srcco.de>
#
#  This program is free software; you can redistribute it and/or modify
#  it under the terms of the GNU General Public License as published by
#  the Free Software Foundation; either version 2 of the License, or
#  (at your option) any later version.
#
#  $Id: testall.py 82 2004-07-11 13:01:44Z henning $

import unittest
import testvcard
import testvcalendar
import testCoCuMa_Server
import testMainController

if __name__ == "__main__":
    suite = unittest.TestSuite()
    suite.addTest(unittest.makeSuite(testvcard.vCardTestCase))
    suite.addTest(unittest.makeSuite(testvcalendar.vCalendarTestCase))
    suite.addTest(unittest.makeSuite(testCoCuMa_Server.CoCuMa_ServerTestCase))
    suite.addTest(unittest.makeSuite(testMainController.MainControllerTestCase))
    unittest.TextTestRunner(verbosity=2).run(suite)