~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/selftest/blackbox.py

  • Committer: Robert Collins
  • Date: 2005-10-17 00:00:33 UTC
  • mfrom: (1458)
  • mto: This revision was merged to the branch mainline in revision 1459.
  • Revision ID: robertc@lifelesslap.robertcollins.net-20051017000033-b7385b1772d31605
mergeĀ inĀ integration

Show diffs side-by-side

added added

removed removed

Lines of Context:
614
614
        runbzr("add sub1")
615
615
        runbzr("rename sub1 sub2")
616
616
        runbzr("move hello.txt sub2")
617
 
        assert capture("relpath sub2/hello.txt") == os.path.join("sub2", "hello.txt\n")
 
617
        self.assertEqual(capture("relpath sub2/hello.txt"),
 
618
                         os.path.join("sub2", "hello.txt\n"))
618
619
 
619
620
        assert exists("sub2")
620
621
        assert exists("sub2/hello.txt")