mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2025-01-17 23:44:20 +00:00
23a8abbe8a
Fixes the second issue mentioned in ticket #1050.
15 lines
314 B
Ruby
Executable File
15 lines
314 B
Ruby
Executable File
#!/usr/bin/ruby -w
|
|
|
|
describe "mkvpropedit / editing files without a track UID"
|
|
test "data/mkv/no-track-uid.mks" do
|
|
hashes = []
|
|
|
|
sys "cp data/mkv/no-track-uid.mks #{tmp}"
|
|
hashes << hash_tmp(false)
|
|
|
|
propedit "#{tmp} --edit track:s1 --set name=chunky-bacon"
|
|
hashes << hash_tmp(false)
|
|
|
|
hashes.join '-'
|
|
end
|