~jeanfrancois.roy/bzr/url-safe-escape

« back to all changes in this revision

Viewing changes to bzrlib/selftest/__init__.py

  • Committer: Jelmer Vernooij
  • Date: 2005-11-04 17:26:05 UTC
  • mfrom: (1185.16.146)
  • mto: (1185.33.1)
  • mto: This revision was merged to the branch mainline in revision 1509.
  • Revision ID: jelmer@samba.org-20051104172605-9288f261492667fd
MergeĀ fromĀ Martin

Show diffs side-by-side

added added

removed removed

Lines of Context:
488
488
        """
489
489
        # XXX: It's OK to just create them using forward slashes on windows?
490
490
        for name in shape:
491
 
            assert isinstance(name, basestring)
 
491
            self.assert_(isinstance(name, basestring))
492
492
            if name[-1] == '/':
493
493
                os.mkdir(name[:-1])
494
494
            else:
515
515
        logging.info('an info message')
516
516
        warning('something looks dodgy...')
517
517
        logging.debug('hello, test is running')
518
 
        ## assert 0
519
518
 
520
519
 
521
520
def filter_suite_by_re(suite, pattern):