~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/selftest/whitebox.py

  • Committer: Robert Collins
  • Date: 2005-09-23 09:25:16 UTC
  • mto: (1092.3.4)
  • mto: This revision was merged to the branch mainline in revision 1390.
  • Revision ID: robertc@robertcollins.net-20050923092516-e2c3c0f31288669d
Merge what applied of Alexander Belchenko's win32 patch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
195
195
            # directory, or nearby
196
196
            os.chdir(dtmp)
197
197
 
198
 
            self.assertEqual(rp('foo/bar/quux'), 'foo/bar/quux')
 
198
            FOO_BAR_QUUX = os.path.join('foo', 'bar', 'quux')
 
199
            self.assertEqual(rp('foo/bar/quux'), FOO_BAR_QUUX)
199
200
 
200
201
            self.assertEqual(rp('foo'), 'foo')
201
202