summaryrefslogtreecommitdiff
path: root/test/win32ole/test_propertyputref.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/win32ole/test_propertyputref.rb')
-rw-r--r--test/win32ole/test_propertyputref.rb31
1 files changed, 18 insertions, 13 deletions
diff --git a/test/win32ole/test_propertyputref.rb b/test/win32ole/test_propertyputref.rb
index 742a53b578..14b1a72e3d 100644
--- a/test/win32ole/test_propertyputref.rb
+++ b/test/win32ole/test_propertyputref.rb
@@ -1,19 +1,24 @@
require 'test/unit'
-require 'win32ole'
+begin
+ require 'win32ole'
+rescue LoadError
+end
-class TestWIN32OLE_PROPERTYPUTREF < Test::Unit::TestCase
- def setup
- begin
- @sapi = WIN32OLE.new('SAPI.SpVoice')
- rescue WIN32OLERuntimeErro
- @sapi = nil
+if defined?(WIN32OLE)
+ class TestWIN32OLE_PROPERTYPUTREF < Test::Unit::TestCase
+ def setup
+ begin
+ @sapi = WIN32OLE.new('SAPI.SpVoice')
+ rescue WIN32OLERuntimeErro
+ @sapi = nil
+ end
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)
+ 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
end