mkvtoolnix/tests/test-374extract_chapters_with_ebml_void.rb
2018-11-16 09:51:30 +01:00

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