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:
Jiri Konecny 2019-04-12 15:09:53 +02:00
parent 479d17c033
commit 0cd089802f
No known key found for this signature in database
GPG key ID: 38F52F0E5C3FAD25
3 changed files with 9 additions and 5 deletions

View file

@ -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)