method
test_ole_get_methods
ruby latest stable - Class:
TestWin32OLE
test_ole_get_methods()public
No documentation available.
# File ext/win32ole/tests/testWIN32OLE.rb, line 260
def test_ole_get_methods
methods = @excel.ole_get_methods
assert(methods.size > 0)
method_names = methods.collect{|m| m.name}
assert(method_names.include?("Visible"))
end