def testRealWithBackslash(self): fd, path = tempfile.mkstemp(suffix=u'back\\slash.flac') refPath = os.path.join(os.path.dirname(path), 'fake.cue') self.assertEqual(common.getRealPath(refPath, path), path) # same path, but with wav extension, will point to flac file wavPath = path[:-4] + 'wav' self.assertEqual(common.getRealPath(refPath, wavPath), path) os.close(fd) os.unlink(path)
def testRealWithBackslash(self): fd, path = tempfile.mkstemp(suffix=u'back\\slash.flac') refPath = os.path.join(os.path.dirname(path), 'fake.cue') self.assertEquals(common.getRealPath(refPath, path), path) # same path, but with wav extension, will point to flac file wavPath = path[:-4] + 'wav' self.assertEquals(common.getRealPath(refPath, wavPath), path) os.close(fd) os.unlink(path)
def getRealPath(self, path): """ Translate the .toc's FILE to an existing path. @type path: unicode """ return common.getRealPath(self._path, path)
def getRealPath(self, path): """ Translate the .cue's FILE to an existing path. @type path: unicode """ return common.getRealPath(self._path, path)
def getRealPath(self, path): """Translate the .toc's FILE to an existing path. :param path: :type path: unicode """ return common.getRealPath(self._path, path)
def getRealPath(self, path): """Translate the .cue's FILE to an existing path. :param path: :type path: unicode """ return common.getRealPath(self._path, path)
def getRealPath(self, path): """ Translate the .cue's FILE to an existing path. :type path: str """ return common.getRealPath(self._path, path)
def getRealPath(self, path): """ Translate the .toc's FILE to an existing path. :param path: path to track :type path: str """ return common.getRealPath(self._path, path)