Lines Matching full:paths
102 paths = repo.list_submodules()
103 self.assertNotIn(self.GIT_ROOT, paths)
112 paths = repo.list_submodules()
113 self.assertIn(self.SUBMODULES[2], paths)
122 paths = repo.list_submodules(
125 self.assertNotIn(self.GIT_ROOT, paths)
134 paths = repo.list_submodules(
137 self.assertNotIn(self.SUBMODULES[0], paths)
146 paths = repo.list_submodules(
149 self.assertIn(self.SUBMODULES[-1], paths)
158 paths = repo.list_submodules(
161 self.assertNotIn(self.GIT_ROOT, paths)
163 self.assertIn(module, paths)
172 paths = repo.list_submodules(
175 self.assertNotIn(self.GIT_ROOT, paths)
177 self.assertIn(module, paths)
192 # on returned paths. Since we're not using real files, nothing will
197 paths = repo.list_files(commit='something')
198 self.assertIn(expected_file_path, paths)