Rovin / whisper.cpp /bindings /ruby /test /test_vad_segment.rb
Dyen's picture
Fix binaries and nested git
bfdf803
require_relative "helper"
class TestVADSegment < TestBase
def test_initialize
segment = Whisper::VAD::Segment.new
assert_raise do
segment.start_time
end
assert_raise do
segments.end_time
end
assert_raise do
segment => {start_time:, end_time:}
end
end
end