~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/selftest/treeshape.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:
64
64
        filenames.sort()
65
65
        for fn in filenames:
66
66
            fullpath = os.path.join(dirpath, fn)
67
 
            assert fullpath[-1] not in '@/'
 
67
            self.assertFalse(fullpath[-1] in '@/')
68
68
            info = os.lstat(fullpath)
69
69
            if stat.S_ISLNK(info.st_mode):
70
70
                yield (fullpath + '@', os.readlink(fullpath))