/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: 2008-11-28 16:42:25 UTC
  • Revision ID: jelmer@samba.org-20081128164225-fzvl9pxk1ki77qoj
Delay registration of signals to prevent problems when signal handlers use not yet constructed widgets.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2007 Jelmer Vernooij <jelmer@samba.org>
 
1
# Copyright (C) 2007, 2008 Jelmer Vernooij <jelmer@samba.org>
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
27
27
    testmod_names = [
28
28
        'test_commit',
29
29
        'test_diff',
 
30
        'test_history',
 
31
        'test_linegraph',
30
32
        'test_preferences',
31
 
        'test_history',
 
33
        'test_revisionview',
32
34
        ]
33
35
 
34
 
    if os.name == 'nt':
35
 
        testmod_names.append("test_tortoise_bzr")
36
 
 
37
36
    result.addTest(loader.loadTestsFromModuleNames(["%s.%s" % (__name__, i) for i in testmod_names]))
38
37
    return result
39
38