Example #1
0
 def create_fake_iso(self, output_dir):
     """ Create a fake ISO file, without genisoimage """
     iso = Iso([])
     f = output_dir.join('test.iso')
     f.write('ISOCONTENTS')
     iso.output = str(f)
     iso.make_sha256sum()
     return iso