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

ruby-changes:53185

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

suke	2018-10-28 10:03:49 +0900 (Sun, 28 Oct 2018)

  New Revision: 65400

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

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

  Modified files:
    trunk/spec/ruby/library/win32ole/win32ole/ole_func_methods_spec.rb
Index: spec/ruby/library/win32ole/win32ole/ole_func_methods_spec.rb
===================================================================
--- spec/ruby/library/win32ole/win32ole/ole_func_methods_spec.rb	(revision 65399)
+++ spec/ruby/library/win32ole/win32ole/ole_func_methods_spec.rb	(revision 65400)
@@ -5,23 +5,19 @@ platform_is :windows do https://github.com/ruby/ruby/blob/trunk/spec/ruby/library/win32ole/win32ole/ole_func_methods_spec.rb#L5
 
   describe "WIN32OLE#ole_func_methods" do
     before :each do
-      @ie = WIN32OLESpecs.new_ole('InternetExplorer.Application')
-    end
-
-    after :each do
-      @ie.Quit if @ie
+      @dict = WIN32OLESpecs.new_ole('Scripting.Dictionary')
     end
 
     it "raises ArgumentError if argument is given" do
-      lambda { @ie.ole_func_methods(1) }.should raise_error ArgumentError
+      lambda { @dict.ole_func_methods(1) }.should raise_error ArgumentError
     end
 
     it "returns an array of WIN32OLE_METHODs" do
-      @ie.ole_func_methods.all? { |m| m.kind_of? WIN32OLE_METHOD }.should be_true
+      @dict.ole_func_methods.all? { |m| m.kind_of? WIN32OLE_METHOD }.should be_true
     end
 
-    it "contains a 'AddRef' method for Internet Explorer" do
-      @ie.ole_func_methods.map { |m| m.name }.include?('AddRef').should be_true
+    it "contains a 'AddRef' method for Scripting Dictionary" do
+      @dict.ole_func_methods.map { |m| m.name }.include?('AddRef').should be_true
     end
   end
 end

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

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