mkvtoolnix/tests/test-323propedit_segment_info.rb
2011-12-03 16:09:55 +01:00

23 lines
474 B
Ruby

#!/usr/bin/ruby -w
class T_323propedit_segment_info < Test
def description
"mkvpropedit / segment info"
end
def run
hashes = []
sys "cp data/mkv/complex.mkv #{tmp}"
hashes << hash_tmp(false)
propedit "--edit info --set title='Some Wuffy' --set segment-filename='#{"long " * 200}'"
hashes << hash_tmp(false)
propedit "--edit info --set title='Some Wuffy' --delete segment-filename"
hashes << hash_tmp
hashes.join '-'
end
end