本文整理汇总了Python中repo.Repo.load_index_from_disk方法的典型用法代码示例。如果您正苦于以下问题:Python Repo.load_index_from_disk方法的具体用法?Python Repo.load_index_from_disk怎么用?Python Repo.load_index_from_disk使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类repo.Repo
的用法示例。
在下文中一共展示了Repo.load_index_from_disk方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_load_version_mismatch_error
# 需要导入模块: from repo import Repo [as 别名]
# 或者: from repo.Repo import load_index_from_disk [as 别名]
def test_load_version_mismatch_error(self):
r = Repo(index={}, config=self.conf, connector=self.connector)
with self.assertRaises(VersionMismatchError) as cm:
r.load_index_from_disk(99)
self.assertEqual(cm.exception.actual, 99)
self.assertEqual(cm.exception.expected, repo.INDEX_FORMAT_VERSION)
示例2: test_load_index_version_1
# 需要导入模块: from repo import Repo [as 别名]
# 或者: from repo.Repo import load_index_from_disk [as 别名]
def test_load_index_version_1(self):
r = Repo(index={}, config=self.conf, connector=self.connector)
r.load_index_from_disk(1)
self.assertEqual(r.index, self.pi)
self.assertIsNot(r.index, self.pi)
示例3: test_load_index_version_current
# 需要导入模块: from repo import Repo [as 别名]
# 或者: from repo.Repo import load_index_from_disk [as 别名]
def test_load_index_version_current(self):
r = Repo(index={}, config=self.conf, connector=self.connector)
r.load_index_from_disk(repo.INDEX_FORMAT_VERSION)
self.assertEqual(r.index, self.pi)
self.assertIsNot(r.index, self.pi)