~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/commands/__init__.py

  • Committer: John Arbash Meinel
  • Author(s): Mark Hammond
  • Date: 2008-09-09 17:02:21 UTC
  • mto: This revision was merged to the branch mainline in revision 3697.
  • Revision ID: john@arbash-meinel.com-20080909170221-svim3jw2mrz0amp3
An updated transparent icon for bzr.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2007-2010 Canonical Ltd
 
1
# Copyright (C) 2007 Canonical Ltd
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
12
12
#
13
13
# You should have received a copy of the GNU General Public License
14
14
# along with this program; if not, write to the Free Software
15
 
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
16
 
17
17
 
18
18
"""Commands behaviour tests for bzr.
22
22
"""
23
23
 
24
24
# FIXME: If the separation described above from the blackbox tests is not worth
25
 
# it, all the tests defined below should be moved to blackbox instead.
 
25
# it, all the tests defined below should be moved to blackbox instead. 
26
26
 
27
27
def load_tests(basic_tests, module, loader):
28
28
    suite = loader.suiteClass()
41
41
        'bzrlib.tests.commands.test_pull',
42
42
        'bzrlib.tests.commands.test_push',
43
43
        'bzrlib.tests.commands.test_update',
44
 
        'bzrlib.tests.commands.test_revert',
45
44
        ]
46
45
    # add the tests for the sub modules
47
46
    suite.addTests(loader.loadTestsFromModuleNames(testmod_names))