Lines Matching full:paths
54 paths = git_repo.discover_submodules(superproject_dir=self.GIT_ROOT)
55 self.assertIn(self.GIT_ROOT, paths)
58 paths = git_repo.discover_submodules(superproject_dir=self.GIT_ROOT)
59 self.assertIn(self.SUBMODULES[2], paths)
62 paths = git_repo.discover_submodules(
66 self.assertNotIn(self.GIT_ROOT, paths)
69 paths = git_repo.discover_submodules(
73 self.assertNotIn(self.SUBMODULES[0], paths)
76 paths = git_repo.discover_submodules(
80 self.assertIn(self.SUBMODULES[-1], paths)
83 paths = git_repo.discover_submodules(
87 self.assertIn(self.GIT_ROOT, paths)
89 self.assertIn(module, paths)
92 paths = git_repo.discover_submodules(
96 self.assertIn(self.GIT_ROOT, paths)
98 self.assertIn(module, paths)