mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-29 06:15:24 +00:00
14 lines
206 B
Ruby
14 lines
206 B
Ruby
|
#!/usr/bin/ruby -w
|
||
|
|
||
|
class T_318ui_locale_invalid < Test
|
||
|
def description
|
||
|
"mkvmerge / UI locale: invalid"
|
||
|
end
|
||
|
|
||
|
def run
|
||
|
sys "../src/mkvmerge --ui-language gnufudel", 2
|
||
|
|
||
|
return "ok"
|
||
|
end
|
||
|
end
|