~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_too_much.py

  • Committer: John Arbash Meinel
  • Date: 2005-12-01 17:36:29 UTC
  • mto: (1185.50.19 bzr-jam-integration)
  • mto: This revision was merged to the branch mainline in revision 1532.
  • Revision ID: john@arbash-meinel.com-20051201173629-aecb08238e0976a2
Removing instances of os.sep

Show diffs side-by-side

added added

removed removed

Lines of Context:
668
668
        # the ordering is not defined at the moment
669
669
        results = sorted(out.rstrip('\n').split('\n'))
670
670
        self.assertEquals(['added dir',
671
 
                           'added dir'+os.sep+'sub.txt',
 
671
                           'added dir/sub.txt',
672
672
                           'added top.txt',],
673
673
                          results)
674
674
 
715
715
        self.build_tree(['inertiatic/', 'inertiatic/esp'])
716
716
        self.assertEquals(self.capture('unknowns'), 'inertiatic\n')
717
717
        self.run_bzr('add', '--no-recurse', 'inertiatic')
718
 
        self.assertEquals(self.capture('unknowns'), 'inertiatic'+os.sep+'esp\n')
 
718
        self.assertEquals(self.capture('unknowns'), 'inertiatic/esp\n')
719
719
        self.run_bzr('add', 'inertiatic/esp')
720
720
        self.assertEquals(self.capture('unknowns'), '')
721
721