]> git.evergreen-ils.org Git - OpenSRF.git/blob - src/python/tests/test_coverage.py
Add Python unit testing and coverage report to "make check"
[OpenSRF.git] / src / python / tests / test_coverage.py
1 """
2 Trigger nosetests to give us a complete coverage statement
3
4 nosetests only reports on the modules that are imported in
5 the tests it finds; this file serves as a placeholder until
6 we actually provide unit test coverage of the core files.
7 """
8
9 import osrf.app
10 import osrf.cache
11 import osrf.conf
12 import osrf.const
13 import osrf.ex
14 import osrf.gateway
15 # Triggers an exception if mod_python is not installed
16 #import osrf.http_translator
17 import osrf.json
18 import osrf.log
19 import osrf.net_obj
20 import osrf.net
21 import osrf.server
22 import osrf.ses
23 import osrf.set
24 import osrf.stack
25 import osrf.system
26 import osrf.xml_obj
27 import unittest
28
29 if __name__ == '__main__':
30     unittest.main()