mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
support some kind of method of word. [ruby-Bugs#3237]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10384 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
38321af30c
commit
afdc2b89bd
3 changed files with 57 additions and 14 deletions
37
test/win32ole/test_word.rb
Normal file
37
test/win32ole/test_word.rb
Normal file
|
@ -0,0 +1,37 @@
|
|||
#
|
||||
# This is test for [ruby-Bugs#3237]
|
||||
#
|
||||
begin
|
||||
require 'win32ole'
|
||||
rescue LoadError
|
||||
end
|
||||
require "test/unit"
|
||||
|
||||
if defined?(WIN32OLE)
|
||||
class TestWIN32OLE_WORD < Test::Unit::TestCase
|
||||
|
||||
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 teardown
|
||||
if @obj
|
||||
@obj.quit
|
||||
@obj = nil
|
||||
end
|
||||
end
|
||||
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue