aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/library/win32ole/win32ole/ole_obj_help_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/library/win32ole/win32ole/ole_obj_help_spec.rb')
-rw-r--r--spec/ruby/library/win32ole/win32ole/ole_obj_help_spec.rb23
1 files changed, 23 insertions, 0 deletions
diff --git a/spec/ruby/library/win32ole/win32ole/ole_obj_help_spec.rb b/spec/ruby/library/win32ole/win32ole/ole_obj_help_spec.rb
new file mode 100644
index 0000000000..eede93bb87
--- /dev/null
+++ b/spec/ruby/library/win32ole/win32ole/ole_obj_help_spec.rb
@@ -0,0 +1,23 @@
+require File.expand_path('../../fixtures/classes', __FILE__)
+
+platform_is :windows do
+ require 'win32ole'
+
+ describe "WIN32OLE#ole_obj_help" do
+ before :each do
+ @ie = WIN32OLESpecs.new_ole('InternetExplorer.Application')
+ end
+
+ after :each do
+ @ie.Quit
+ end
+
+ it "raises ArgumentError if argument is given" do
+ lambda { @ie.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
+ end
+ end
+end