bzr branch
http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
|
6060.6.1
by Jelmer Vernooij
Add 'bzr branches' command. |
1 |
# Copyright (C) 2011 Canonical Ltd
|
2 |
#
|
|
3 |
# This program is free software; you can redistribute it and/or modify
|
|
4 |
# it under the terms of the GNU General Public License as published by
|
|
5 |
# the Free Software Foundation; either version 2 of the License, or
|
|
6 |
# (at your option) any later version.
|
|
7 |
#
|
|
8 |
# This program is distributed in the hope that it will be useful,
|
|
9 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
10 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
11 |
# GNU General Public License for more details.
|
|
12 |
#
|
|
13 |
# You should have received a copy of the GNU General Public License
|
|
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
|
|
16 |
||
17 |
||
18 |
"""Black-box tests for bzr branches."""
|
|
19 |
||
20 |
from bzrlib.tests import TestCaseWithTransport |
|
21 |
||
22 |
||
23 |
class TestBranches(TestCaseWithTransport): |
|
24 |
||
25 |
def test_no_colocated_support(self): |
|
26 |
# Listing the branches in a control directory without colocated branch
|
|
27 |
# support.
|
|
28 |
self.run_bzr('init a') |
|
29 |
out, err = self.run_bzr('branches a') |
|
30 |
self.assertEquals(out, " (default)\n") |
|
31 |
||
32 |
def test_no_branch(self): |
|
33 |
# Listing the branches in a control directory without branches.
|
|
34 |
self.run_bzr('init-repo a') |
|
35 |
out, err = self.run_bzr('branches a') |
|
36 |
self.assertEquals(out, "") |
|
37 |
||
38 |
def test_default_current_dir(self): |
|
39 |
# "bzr branches" list the branches in the current directory
|
|
40 |
# if no location was specified.
|
|
41 |
self.run_bzr('init-repo a') |
|
42 |
out, err = self.run_bzr('branches', working_dir='a') |
|
43 |
self.assertEquals(out, "") |