mkvtoolnix/tests/test-374extract_chapters_with_ebml_void.rb
2012-12-02 17:45:30 +01:00

10 lines
281 B
Ruby

#!/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).join('')
/ebml.?void/i.match(output) ? 'BAD' : 'ok'
end