~ubuntu-branches/ubuntu/saucy/terminator/saucy

« back to all changes in this revision

Viewing changes to terminatorlib/tests/test_doctests.py

  • Committer: Bazaar Package Importer
  • Author(s): Nicolas Valcárcel Scerpella (Canonical)
  • Date: 2010-04-07 17:10:31 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20100407171031-35nsuj0tmbub0bj5
Tags: 0.92-0ubuntu1
* New upstream release
* Remove python-xdg from Recommends. (Closes: #567967)
* Downgrade python-gnome2 to Recommends.
* Update python-gtk2 dependency to (>= 2.14.0)
* Add python-keybinder to Recommends

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
"""Load up the tests."""
 
2
from unittest import TestSuite
 
3
from doctest import DocTestSuite, ELLIPSIS
 
4
 
 
5
def test_suite():
 
6
    suite = TestSuite()
 
7
    for name in (
 
8
        'config',
 
9
        'plugin',
 
10
        'cwd',
 
11
        'factory',
 
12
        'util',
 
13
        'tests.testborg',
 
14
        'tests.testsignalman',
 
15
        ):
 
16
        suite.addTest(DocTestSuite('terminatorlib.' + name))
 
17
    return suite