/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: Vincent Ladeuil
  • Date: 2009-05-04 06:58:46 UTC
  • mto: This revision was merged to the branch mainline in revision 631.
  • Revision ID: v.ladeuil+lp@free.fr-20090504065846-qdzbviwxgg77r0pn
Use public API for create_prefix.

* push.py:
(do_push): Call create_prefix on transport.

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