mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-26 04:42:04 +00:00
12 lines
346 B
Ruby
Executable File
12 lines
346 B
Ruby
Executable File
#!/usr/bin/ruby -w
|
|
|
|
the_file = "data/mkv/deprecated-languages.mkv"
|
|
|
|
# T_378deprecated_iso_639_2_codes
|
|
describe "mkvmerge / handling deprecated ISO 639-2 language codes"
|
|
test "identification" do
|
|
identify_json(the_file)["tracks"].collect { |t| t["properties"]["language"] }.compact.sort.join('+')
|
|
end
|
|
|
|
test_merge the_file, :exit_code => :warning
|