mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-23 19:31:44 +00:00
14 lines
366 B
Ruby
Executable File
14 lines
366 B
Ruby
Executable File
#!/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
|