~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/canonical/dyson/testsuite.py

  • Committer: Steve Alexander
  • Date: 2006-08-23 14:18:50 UTC
  • mfrom: (3691.1.255 launchpad)
  • Revision ID: steve.alexander@canonical.com-20060823141850-59a63d2b6f9872ec
merge from rf

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/env python
2
 
"""Test suite for dyson."""
3
 
 
4
 
from hct.scaffold import main
5
 
 
6
 
 
7
 
tests = [
8
 
    "canonical.dyson.tests.test_filter",
9
 
    "canonical.dyson.tests.test_hose",
10
 
    "canonical.dyson.tests.test_walker",
11
 
    ]
12
 
 
13
 
 
14
 
if __name__ == "__main__":
15
 
    main(names=tests)