mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-22 19:13:14 +00:00
10 lines
295 B
Ruby
Executable File
10 lines
295 B
Ruby
Executable File
#!/usr/bin/ruby -w
|
|
|
|
# T_374extract_chapters_with_ebml_void
|
|
describe "mkvextract / extract chapters with EbmlVoid elements"
|
|
|
|
test 'extraction' do
|
|
output = extract("data/mkv/chapters-with-ebmlvoid.mkv", :mode => :chapters, :args => "-").join('')
|
|
/ebml.?void/i.match(output) ? 'BAD' : 'ok'
|
|
end
|