mirror of
https://github.com/ggerganov/whisper.cpp.git
synced 2025-06-01 15:36:27 +02:00
This commit fixes the following warnings in the Ruby tests: ```console /whisper/bindings/ruby/tests/test_segment.rb:52: warning: ambiguity between regexp and two divisions: wrap regexp in parentheses or add a space after `/' operator ``` And also adds a '_' prefix to some unused variables to avoid warnings.
21 lines
451 B
Ruby
21 lines
451 B
Ruby
require_relative "helper"
|
|
|
|
class TestError < TestBase
|
|
def test_error
|
|
error = Whisper::Error.new(-2)
|
|
assert_equal "failed to compute log mel spectrogram", error.message
|
|
assert_equal(-2, error.code)
|
|
end
|
|
|
|
def test_unknown_error
|
|
error = Whisper::Error.new(-20)
|
|
assert_equal "unknown error", error.message
|
|
end
|
|
|
|
def test_non_int_code
|
|
assert_raise TypeError do
|
|
_error = Whisper::Error.new("non int")
|
|
end
|
|
end
|
|
end
|