本文整理汇总了Python中osc2.wc.project.Project._perform_adds方法的典型用法代码示例。如果您正苦于以下问题:Python Project._perform_adds方法的具体用法?Python Project._perform_adds怎么用?Python Project._perform_adds使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类osc2.wc.project.Project
的用法示例。
在下文中一共展示了Project._perform_adds方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_update11
# 需要导入模块: from osc2.wc.project import Project [as 别名]
# 或者: from osc2.wc.project.Project import _perform_adds [as 别名]
def test_update11(self):
"""test update (go back to state STATE_PREPARE after add)"""
path = self.fixture_file('prj1_update_state_prepare')
ustate = ProjectUpdateState.read_state(path)
self.assertEqual(ustate.state, UpdateStateMixin.STATE_PREPARE)
# the update itself is similar to test_update5
prj = Project(path)
self.assertEqual(prj._status('foo'), '?')
prj._perform_adds(ustate)
self._exists(path, '.osc', '_transaction')
ustate = ProjectUpdateState.read_state(path)
self.assertEqual(ustate.state, UpdateStateMixin.STATE_PREPARE)
self.assertEqual(ustate.entrystates['foo'], ' ')