/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: John Arbash Meinel
  • Date: 2008-11-13 06:55:41 UTC
  • mto: This revision was merged to the branch mainline in revision 623.
  • Revision ID: john@arbash-meinel.com-20081113065541-o9a9ygeu0v1n2rsb
Add tests of RevisionView that it can handle broken file-info properties.

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',
30
31
        'test_linegraph',
31
32
        'test_preferences',
32
 
        'test_history',
 
33
        'test_revisionview',
33
34
        ]
34
35
 
35
36
    result.addTest(loader.loadTestsFromModuleNames(["%s.%s" % (__name__, i) for i in testmod_names]))