/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-05-05 09:58:55 UTC
  • mto: (0.200.912 trunk)
  • mto: This revision was merged to the branch mainline in revision 6960.
  • Revision ID: jelmer@samba.org-20100505095855-i0165hooflvk9chy
Ignore control files in inventories.

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)