mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
20 lines
401 B
Ruby
20 lines
401 B
Ruby
|
require 'test/unit'
|
||
|
require 'win32ole'
|
||
|
|
||
|
class TestWIN32OLE_PROPERTYPUTREF < Test::Unit::TestCase
|
||
|
def setup
|
||
|
begin
|
||
|
@sapi = WIN32OLE.new('SAPI.SpVoice')
|
||
|
rescue WIN32OLERuntimeErro
|
||
|
@sapi = nil
|
||
|
end
|
||
|
end
|
||
|
def test_sapi
|
||
|
if @sapi
|
||
|
new_id = @sapi.getvoices.item(2).Id
|
||
|
@sapi.voice = @sapi.getvoices.item(2)
|
||
|
assert_equal(new_id, @sapi.voice.Id)
|
||
|
end
|
||
|
end
|
||
|
end
|