mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-27 05:14:47 +00:00
ec4c1c19e9
Fixes #801.
10 lines
281 B
Ruby
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
|