patch-iso supports multiple graft directories
Pungi patch iso now supports multiple graft directories. This should make usage more comfortable. Signed-off-by: Jiri Konecny <jkonecny@redhat.com>
This commit is contained in:
parent
479d17c033
commit
0cd089802f
3 changed files with 9 additions and 5 deletions
|
|
@ -87,6 +87,7 @@ class TestPatchingIso(unittest.TestCase):
|
|||
source='source.iso',
|
||||
force_arch=None,
|
||||
volume_id='FOOBAR',
|
||||
dirs=[]
|
||||
)
|
||||
patch_iso.run(log, opts)
|
||||
|
||||
|
|
@ -124,7 +125,8 @@ class TestPatchingIso(unittest.TestCase):
|
|||
target='test.iso',
|
||||
source='source.iso',
|
||||
force_arch=None,
|
||||
volume_id=None
|
||||
volume_id=None,
|
||||
dirs=[]
|
||||
)
|
||||
patch_iso.run(log, opts)
|
||||
|
||||
|
|
@ -164,7 +166,8 @@ class TestPatchingIso(unittest.TestCase):
|
|||
target='test.iso',
|
||||
source='source.iso',
|
||||
force_arch=None,
|
||||
volume_id=None
|
||||
volume_id=None,
|
||||
dirs=[]
|
||||
)
|
||||
patch_iso.run(log, opts)
|
||||
|
||||
|
|
@ -206,6 +209,7 @@ class TestPatchingIso(unittest.TestCase):
|
|||
source='source.iso',
|
||||
force_arch='s390',
|
||||
volume_id='foobar',
|
||||
dirs=[],
|
||||
)
|
||||
patch_iso.run(log, opts)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue