本文整理汇总了Python中pulp.plugins.util.publish_step.PluginStep.get_repo方法的典型用法代码示例。如果您正苦于以下问题:Python PluginStep.get_repo方法的具体用法?Python PluginStep.get_repo怎么用?Python PluginStep.get_repo使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pulp.plugins.util.publish_step.PluginStep
的用法示例。
在下文中一共展示了PluginStep.get_repo方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_get_repo
# 需要导入模块: from pulp.plugins.util.publish_step import PluginStep [as 别名]
# 或者: from pulp.plugins.util.publish_step.PluginStep import get_repo [as 别名]
def test_get_repo(self):
step = PluginStep('foo_step')
step.repo = 'foo'
self.assertEquals('foo', step.get_repo())
示例2: test_get_repo_from_parent
# 需要导入模块: from pulp.plugins.util.publish_step import PluginStep [as 别名]
# 或者: from pulp.plugins.util.publish_step.PluginStep import get_repo [as 别名]
def test_get_repo_from_parent(self):
step = PluginStep('foo_step')
step.conduit = 'foo'
step.parent = Mock()
step.parent.get_repo.return_value = 'foo'
self.assertEquals('foo', step.get_repo())
示例3: test_get_working_dir_from_repo
# 需要导入模块: from pulp.plugins.util.publish_step import PluginStep [as 别名]
# 或者: from pulp.plugins.util.publish_step.PluginStep import get_repo [as 别名]
def test_get_working_dir_from_repo(self):
step = PluginStep('foo_step')
step.get_repo = Mock(return_value=Mock(working_dir='foo'))
self.assertEquals('foo', step.get_working_dir())