~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to doc/developers/integration.txt

  • Committer: John Arbash Meinel
  • Date: 2010-01-12 18:05:31 UTC
  • mto: (4634.119.5 2.0)
  • mto: This revision was merged to the branch mainline in revision 4959.
  • Revision ID: john@arbash-meinel.com-20100112180531-7iiom0p15574fqud
Add a direct ShelfCreator test for changing root id.
I found there are some shelf_ui tests that also check for it.

Show diffs side-by-side

added added

removed removed

Lines of Context:
197
197
 
198
198
  from bzrlib import branch
199
199
 
200
 
  b = branch.Branch.open('http://bazaar.launchpad.net/~bzr-pqm/bzr/bzr.dev')
 
200
  b = branch.Branch.open('http://bazaar-vcs.org/bzr/bzr.dev')
201
201
  nb = b.bzrdir.sprout('/tmp/newBzrBranch').open_branch()
202
202
 
203
203
 
213
213
  from bzrlib import branch
214
214
 
215
215
  b1 = branch.Branch.open('file:///home/user/mybranch')
216
 
  b2 = branch.Branch.open('http://bazaar.launchpad.net/~bzr-pqm/bzr/bzr.dev')
 
216
  b2 = branch.Branch.open('http://bazaar-vcs.org/bzr/bzr.dev')
217
217
  b1.push(b2)
218
218
 
219
219