/b-gtk/fix-viz

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/b-gtk/fix-viz

« back to all changes in this revision

Viewing changes to tests/__init__.py

  • Committer: Jelmer Vernooij
  • Date: 2007-02-03 15:04:56 UTC
  • Revision ID: jelmer@samba.org-20070203150456-t3ednkxql05rzg0m
Add trivial generic class for storing URL history.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
 
24
24
    loader = TestUtil.TestLoader()
25
25
 
26
 
    testmod_names = ['test_preferences']
 
26
    testmod_names = ['test_preferences', 'test_history']
27
27
    result.addTest(loader.loadTestsFromModuleNames(["%s.%s" % (__name__, i) for i in testmod_names]))
28
28
    return result
29
29