1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/test/win32ole/test_word.rb
naruse 3e92b635fb Add frozen_string_literal: false for all files
When you change this to true, you may need to add more tests.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53141 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-12-16 05:07:31 +00:00

68 lines
1.2 KiB
Ruby

# frozen_string_literal: false
#
# This is test for [ruby-Bugs#3237]
#
begin
require 'win32ole'
rescue LoadError
end
require "test/unit"
def word_installed?
installed = false
w = nil
if defined?(WIN32OLE)
begin
w = WIN32OLE.new('Word.Application')
installed = true
rescue
ensure
if w
w.quit
w = nil
end
end
end
return installed
end
if defined?(WIN32OLE)
class TestWIN32OLE_WITH_WORD < Test::Unit::TestCase
unless word_installed?
def test_dummy_for_skip_message
skip "Microsoft Word is not installed"
end
else
def setup
begin
@obj = WIN32OLE.new('Word.Application')
rescue WIN32OLERuntimeError
@obj = nil
end
end
def test_ole_methods
if @obj
@obj.visible = true
@obj.wordbasic.disableAutoMacros(true)
assert(true)
end
end
def test_s_connect
if @obj
obj2 = WIN32OLE.connect("Word.Application")
assert_instance_of(WIN32OLE, obj2)
obj2.visible = true
end
end
def teardown
if @obj
@obj.quit
@obj = nil
end
end
end
end
end