本文整理汇总了Python中atomic_reactor.build.InsideBuilder.parent_image_inspect方法的典型用法代码示例。如果您正苦于以下问题:Python InsideBuilder.parent_image_inspect方法的具体用法?Python InsideBuilder.parent_image_inspect怎么用?Python InsideBuilder.parent_image_inspect使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类atomic_reactor.build.InsideBuilder
的用法示例。
在下文中一共展示了InsideBuilder.parent_image_inspect方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_parent_image_inspect
# 需要导入模块: from atomic_reactor.build import InsideBuilder [as 别名]
# 或者: from atomic_reactor.build.InsideBuilder import parent_image_inspect [as 别名]
def test_parent_image_inspect(parents_pulled, tmpdir, source_params):
provided_image = "test-build:test_tag"
if MOCK:
mock_docker(provided_image_repotags=provided_image)
source_params.update({'tmpdir': str(tmpdir)})
s = get_source_instance_for(source_params)
b = InsideBuilder(s, provided_image)
b.parents_pulled = parents_pulled
if not parents_pulled:
(flexmock(atomic_reactor.util)
.should_receive('get_inspect_for_image')
.and_return({'Id': 123}))
built_inspect = b.parent_image_inspect(provided_image)
assert built_inspect is not None
assert built_inspect["Id"] is not None