Rovin / whisper.cpp /bindings /ruby /test /test_vad_segments.rb
Dyen's picture
Fix binaries and nested git
bfdf803
require_relative "helper"
class TestVADSegments < TestBase
def test_initialize
segments = Whisper::VAD::Segments.new
assert_raise do
segments.each do |segment|
end
end
assert_raise do
segments.length
end
end
end