~ubuntu-branches/ubuntu/wily/rbldnsd/wily

« back to all changes in this revision

Viewing changes to tests.py

  • Committer: Package Import Robot
  • Author(s): Logan Rosen
  • Date: 2013-11-10 23:45:37 UTC
  • mfrom: (5.2.1 sid)
  • Revision ID: package-import@ubuntu.com-20131110234537-nfcmjceyv3f63o1a
Tags: 0.997a-1ubuntu1
* Merge from Debian unstable. Remaining changes:
  - debian/patches/as-needed.patch: Fix FTBFS with ld --as-needed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
""" Convenience script to run all python test cases in one go.
 
2
"""
 
3
import sys
 
4
import unittest
 
5
 
 
6
try:
 
7
    import DNS
 
8
except ImportError:
 
9
    print "TESTS SKIPPED: the pydns library is not installed"
 
10
    sys.exit(0)
 
11
 
 
12
from test_btrie import *
 
13
from test_ip6trie import *
 
14
from test_ip4trie import *
 
15
from test_acl import *
 
16
 
 
17
if __name__ == '__main__':
 
18
    unittest.main()