File: tests.py

package info (click to toggle)
python-cdd 0.0.11
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, squeeze, wheezy
  • size: 268 kB
  • ctags: 140
  • sloc: python: 1,041; 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)