~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Ross Lagerwall
  • Date: 2012-08-07 06:32:51 UTC
  • mto: (6437.63.5 2.5)
  • mto: This revision was merged to the branch mainline in revision 6558.
  • Revision ID: rosslagerwall@gmail.com-20120807063251-x9p03ghg2ws8oqjc
Add bzrlib/locale to .bzrignore

bzrlib/locale is generated with ./setup.py build_mo which is in turn called
by ./setup.py build

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005-2013, 2016 Canonical Ltd
 
1
# Copyright (C) 2005-2011 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
92
92
                     'test_non_ascii',
93
93
                     'test_outside_wt',
94
94
                     'test_pack',
95
 
                     'test_ping',
96
95
                     'test_pull',
97
96
                     'test_push',
98
97
                     'test_reconcile',
118
117
                     'test_shell_complete',
119
118
                     'test_shelve',
120
119
                     'test_sign_my_commits',
121
 
                     'test_verify_signatures',
122
120
                     'test_split',
123
121
                     'test_status',
124
122
                     'test_switch',
151
149
        The output is supplied first, so that you can supply a variable
152
150
        number of arguments to bzr.
153
151
        """
154
 
        self.assertEqual(self.run_bzr(*args)[0], output)
 
152
        self.assertEquals(self.run_bzr(*args)[0], output)