File: tests.py

package info (click to toggle)
python-cdd 0.0.8
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 256 kB
  • ctags: 136
  • sloc: python: 1,016; makefile: 7
file content (11 lines) | stat: -rw-r--r-- 217 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/python
import unittest
import sys

sys.path.append('.')

import __init__

if not unittest.TextTestRunner(verbosity=2).\
                               run(__init__.suite()).wasSuccessful():
    sys.exit(1)