~lifeless/bzr-svn/loggerhead

« back to all changes in this revision

Viewing changes to tests/test_commit.py

  • Committer: Jelmer Vernooij
  • Date: 2008-11-12 11:31:16 UTC
  • Revision ID: jelmer@samba.org-20081112113116-th2be2jf62tcdht3
Add more docstrings.

Show diffs side-by-side

added added

removed removed

Lines of Context:
140
140
        oldid = wt.path2id("foo")
141
141
        wt.commit(message="data") # 1
142
142
        wt.rename_one("foo", "bar")
 
143
        self.assertEquals(oldid, wt.path2id("bar"))
 
144
        self.assertEquals(None, wt.path2id("foo"))
143
145
        wt.commit(message="doe") # 2
144
146
        paths = self.client_log(repos_url, 2, 0)[2][0]
145
147
        self.assertEquals('D', paths["/foo"][0])