~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_multiparent.py

  • Committer: Martin Pool
  • Date: 2011-02-07 01:39:42 UTC
  • mto: This revision was merged to the branch mainline in revision 5650.
  • Revision ID: mbp@canonical.com-20110207013942-roj88kez6jir13tr
Add brief user documentation of command line splitting

Show diffs side-by-side

added added

removed removed

Lines of Context:
265
265
    def test_filenames(self):
266
266
        vf = multiparent.MultiVersionedFile('foop')
267
267
        vf.add_version('a\nb\nc\nd'.splitlines(True), 'a', [])
268
 
        self.assertPathExists('foop.mpknit')
269
 
        self.assertPathDoesNotExist('foop.mpidx')
 
268
        self.failUnlessExists('foop.mpknit')
 
269
        self.failIfExists('foop.mpidx')
270
270
        vf.save()
271
 
        self.assertPathExists('foop.mpidx')
 
271
        self.failUnlessExists('foop.mpidx')
272
272
        vf.destroy()
273
 
        self.assertPathDoesNotExist('foop.mpknit')
274
 
        self.assertPathDoesNotExist('foop.mpidx')
 
273
        self.failIfExists('foop.mpknit')
 
274
        self.failIfExists('foop.mpidx')