mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-25 04:11:44 +00:00
14 lines
366 B
Ruby
14 lines
366 B
Ruby
|
#!/usr/bin/ruby -w
|
||
|
|
||
|
# T_511propedit_ensure_seek_head_exists_at_front
|
||
|
describe "mkvpropedit / ensuring that a seek head always exists at the front even if it's removed in between"
|
||
|
|
||
|
dir = "data/bugs/1513"
|
||
|
src = "#{dir}/src.mkv"
|
||
|
|
||
|
test src do
|
||
|
sys "cp #{src} #{tmp}"
|
||
|
propedit tmp, "--attachment-name 1234.jpg --replace-attachment 1:#{dir}/picture.jpg"
|
||
|
hash_tmp
|
||
|
end
|