本文整理汇总了Python中kiwi.defaults.Defaults.get_iso_boot_path方法的典型用法代码示例。如果您正苦于以下问题:Python Defaults.get_iso_boot_path方法的具体用法?Python Defaults.get_iso_boot_path怎么用?Python Defaults.get_iso_boot_path使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类kiwi.defaults.Defaults
的用法示例。
在下文中一共展示了Defaults.get_iso_boot_path方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __init__
# 需要导入模块: from kiwi.defaults import Defaults [as 别名]
# 或者: from kiwi.defaults.Defaults import get_iso_boot_path [as 别名]
def __init__(self, source_dir):
self.source_dir = source_dir
self.boot_path = Defaults.get_iso_boot_path()
self.iso_parameters = []
self.iso_loaders = []
示例2: test_get_iso_boot_path
# 需要导入模块: from kiwi.defaults import Defaults [as 别名]
# 或者: from kiwi.defaults.Defaults import get_iso_boot_path [as 别名]
def test_get_iso_boot_path(self, mock_machine):
mock_machine.return_value = 'i686'
assert Defaults.get_iso_boot_path() == 'boot/ix86'
mock_machine.return_value = 'x86_64'
assert Defaults.get_iso_boot_path() == 'boot/x86_64'
示例3: __init__
# 需要导入模块: from kiwi.defaults import Defaults [as 别名]
# 或者: from kiwi.defaults.Defaults import get_iso_boot_path [as 别名]
def __init__(self, source_dir):
self.source_dir = source_dir
self.header_id = '7984fc91-a43f-4e45-bf27-6d3aa08b24cf'
self.header_end_name = 'header_end'
self.header_end_file = self.source_dir + '/' + self.header_end_name
self.boot_path = Defaults.get_iso_boot_path()