[前][次][番号順一覧][スレッド一覧]

ruby-changes:53192

From: suke <ko1@a...>
Date: Sun, 28 Oct 2018 13:19:03 +0900 (JST)
Subject: [ruby-changes:53192] suke:r65407 (trunk): use Scripting.Dictionary instead of InternetExplorer.Application

suke	2018-10-28 13:18:53 +0900 (Sun, 28 Oct 2018)

  New Revision: 65407

  https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=65407

  Log:
    use Scripting.Dictionary instead of InternetExplorer.Application
    
    * spec/ruby/library/win32ole/win32ole/ole_obj_help_spec.rb: use
      Scripting.Dictionary. InternetExplorer.Application is not available on
      some environments. Thanks to MSP-Greg (Greg L).

  Modified files:
    trunk/spec/ruby/library/win32ole/win32ole/ole_obj_help_spec.rb
Index: spec/ruby/library/win32ole/win32ole/ole_obj_help_spec.rb
===================================================================
--- spec/ruby/library/win32ole/win32ole/ole_obj_help_spec.rb	(revision 65406)
+++ spec/ruby/library/win32ole/win32ole/ole_obj_help_spec.rb	(revision 65407)
@@ -1,23 +1,18 @@ https://github.com/ruby/ruby/blob/trunk/spec/ruby/library/win32ole/win32ole/ole_obj_help_spec.rb#L1
-require_relative '../fixtures/classes'
 
 platform_is :windows do
-  require 'win32ole'
+  require_relative '../fixtures/classes'
 
   describe "WIN32OLE#ole_obj_help" do
     before :each do
-      @ie = WIN32OLESpecs.new_ole('InternetExplorer.Application')
-    end
-
-    after :each do
-      @ie.Quit
+      @dict = WIN32OLESpecs.new_ole('Scripting.Dictionary')
     end
 
     it "raises ArgumentError if argument is given" do
-      lambda { @ie.ole_obj_help(1) }.should raise_error ArgumentError
+      lambda { @dict.ole_obj_help(1) }.should raise_error ArgumentError
     end
 
     it "returns an instance of WIN32OLE_TYPE" do
-      @ie.ole_obj_help.kind_of?(WIN32OLE_TYPE).should be_true
+      @dict.ole_obj_help.kind_of?(WIN32OLE_TYPE).should be_true
     end
   end
 end

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]