/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to tests/test_blackbox.py

Ignore .plugins dir.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
from bzrlib.tests.blackbox import ExternalBase
23
23
 
24
24
from bzrlib.plugins.git import (
 
25
    ids,
25
26
    tests,
26
27
    )
27
28
 
53
54
 
54
55
        os.chdir("..")
55
56
        output, error = self.run_bzr(['branch', 'gitbranch', 'bzrbranch'])
56
 
        self.assertEqual(error, 'git: counting objects: 3\r\n' +
57
 
                'Branched 1 revision(s).\n')
 
57
        self.assertEqual(error, 'Branched 1 revision(s).\n')
58
58
        self.assertEqual(output, '')
59
59
 
60
60
    def test_branch_ls(self):
63
63
        self.assertEqual(error, '')
64
64
        self.assertEqual(output, "a\n")
65
65
 
66
 
    def test_init(self):
67
 
        self.run_bzr("init-repo --git repo") 
68
 
 
69
66
    def test_info_verbose(self):
70
67
        self.simple_commit()
71
68