mkvtoolnix/tests/test-018attachments.rb
2004-08-30 22:17:55 +00:00

19 lines
519 B
Ruby

#!/usr/bin/ruby -w
class T_018attachments < Test
def description
return "mkvmerge / attachments / in(*)"
end
def run
merge("data/textsubs/vde.srt --attachment-description 'Dummy " +
"description' --attachment-mime-type text/plain --attach-file " +
"data/textsubs/vde.srt")
hash = hash_tmp
merge("data/textsubs/vde.srt --attachment-description 'automatic MIME " +
"type test' --attach-file data/text/cuewithtags2.cue")
return hash + "-" + hash_tmp
end
end