summaryrefslogtreecommitdiff
path: root/spec/rubyspec/library/win32ole/win32ole_param/ole_type_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/rubyspec/library/win32ole/win32ole_param/ole_type_spec.rb')
-rw-r--r--spec/rubyspec/library/win32ole/win32ole_param/ole_type_spec.rb21
1 files changed, 21 insertions, 0 deletions
diff --git a/spec/rubyspec/library/win32ole/win32ole_param/ole_type_spec.rb b/spec/rubyspec/library/win32ole/win32ole_param/ole_type_spec.rb
new file mode 100644
index 0000000000..52bee2c9b8
--- /dev/null
+++ b/spec/rubyspec/library/win32ole/win32ole_param/ole_type_spec.rb
@@ -0,0 +1,21 @@
+platform_is :windows do
+ require 'win32ole'
+
+ describe "WIN32OLE_PARAM#ole_type" do
+ before :each do
+ ole_type = WIN32OLE_TYPE.new("Microsoft Scripting Runtime", "FileSystemObject")
+ m_copyfile = WIN32OLE_METHOD.new(ole_type, "CopyFile")
+ @param_overwritefiles = m_copyfile.params[2]
+ end
+
+ it "raises ArgumentError if argument is given" do
+ lambda { @param_overwritefiles.ole_type(1) }.should raise_error ArgumentError
+ end
+
+ it "returns 'BOOL' for 3rd parameter of FileSystemObject's 'CopyFile' method" do
+ @param_overwritefiles.ole_type.should == 'BOOL'
+ end
+
+ end
+
+end