本文整理匯總了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