/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_builder.py

  • Committer: Jelmer Vernooij
  • Date: 2010-03-25 11:29:44 UTC
  • mto: (0.254.20 index-based)
  • mto: This revision was merged to the branch mainline in revision 6960.
  • Revision ID: jelmer@samba.org-20100325112944-yx5r5hbvlzlswi1e
Mark as compatible with Bazaar 2.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 
19
19
from cStringIO import StringIO
20
20
 
21
 
from dulwich.repo import Repo as GitRepo
22
 
 
23
21
from bzrlib.plugins.git import tests
24
22
 
25
23
 
246
244
class TestGitBranchBuilderReal(tests.TestCaseInTempDir):
247
245
 
248
246
    def test_create_real_branch(self):
249
 
        GitRepo.init(".")
 
247
        tests.run_git('init')
250
248
 
251
249
        builder = tests.GitBranchBuilder()
252
250
        builder.set_file(u'foo', 'contents\nfoo\n', False)