~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to testbzr

  • Committer: Martin Pool
  • Date: 2005-05-06 03:45:17 UTC
  • Revision ID: mbp@sourcefrog.net-20050506034517-8f4f4909d65199a3
- fix relpath and add tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
203
203
    runcmd("bzr add sub1")
204
204
    runcmd("bzr rename sub1 sub2")
205
205
    runcmd("bzr move hello.txt sub2")
 
206
    assert backtick("bzr relpath sub2/hello.txt") == "sub2/hello.txt\n"
206
207
 
207
208
    assert exists("sub2")
208
209
    assert exists("sub2/hello.txt")
225
226
    cd('sub1/sub2')
226
227
    runcmd('bzr move ../hello.txt .')
227
228
    assert exists('./hello.txt')
 
229
    assert backtick('bzr relpath hello.txt') == 'sub1/sub2/hello.txt\n'
 
230
    assert backtick('bzr relpath ../../sub1/sub2/hello.txt') == 'sub1/sub2/hello.txt\n'
228
231
    runcmd(['bzr', 'commit', '-m', 'move to parent directory'])
229
232
    cd('..')
 
233
    assert backtick('bzr relpath sub2/hello.txt') == 'sub1/sub2/hello.txt\n'
230
234
 
231
235
    runcmd('bzr move sub2/hello.txt .')
232
236
    assert exists('hello.txt')