/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: John Carr
  • Date: 2009-01-13 20:23:52 UTC
  • mto: (0.217.53 git-serve)
  • mto: This revision was merged to the branch mainline in revision 6960.
  • Revision ID: john.carr@unrouted.co.uk-20090113202352-07tuqiobtpxtl3iq
Don't fill screen with muttering

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)