示例#1
0
文件: test_utils.py 项目: sornas/alot
 def test_both_paths_absolute_matching(self):
     superpath = '/a/b'
     subpath = '/a/b/c/d.rst'
     result = utils.is_subdir_of(subpath, superpath)
     self.assertTrue(result)
示例#2
0
文件: test_utils.py 项目: sornas/alot
 def test_both_paths_relative_not_matching(self):
     superpath = 'a/z'
     subpath = 'a/b/c/d.rst'
     result = utils.is_subdir_of(subpath, superpath)
     self.assertFalse(result)
示例#3
0
文件: test_utils.py 项目: sornas/alot
 def test_relative_path_and_absolute_path_matching(self):
     superpath = 'a/b'
     subpath = os.path.join(os.getcwd(), 'a/b/c/d.rst')
     result = utils.is_subdir_of(subpath, superpath)
     self.assertTrue(result)