summaryrefslogtreecommitdiff
path: root/spec/ruby/library/win32ole/win32ole_type/new_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/library/win32ole/win32ole_type/new_spec.rb')
-rw-r--r--spec/ruby/library/win32ole/win32ole_type/new_spec.rb15
1 files changed, 9 insertions, 6 deletions
diff --git a/spec/ruby/library/win32ole/win32ole_type/new_spec.rb b/spec/ruby/library/win32ole/win32ole_type/new_spec.rb
index fab690c2dd..3c3aa1c390 100644
--- a/spec/ruby/library/win32ole/win32ole_type/new_spec.rb
+++ b/spec/ruby/library/win32ole/win32ole_type/new_spec.rb
@@ -12,15 +12,18 @@ platform_is :windows do
it "raises TypeError if second argument is not a String" do
-> { WIN32OLE_TYPE.new(1,2) }.should raise_error TypeError
- -> { WIN32OLE_TYPE.new('Microsoft Shell Controls And Automation',2) }.
- should raise_error TypeError
+ -> {
+ WIN32OLE_TYPE.new('Microsoft Shell Controls And Automation',2)
+ }.should raise_error TypeError
end
it "raise WIN32OLERuntimeError if OLE object specified is not found" do
- -> { WIN32OLE_TYPE.new('Microsoft Shell Controls And Automation','foo') }.
- should raise_error WIN32OLERuntimeError
- -> { WIN32OLE_TYPE.new('Microsoft Shell Controls And Automation','Application') }.
- should raise_error WIN32OLERuntimeError
+ -> {
+ WIN32OLE_TYPE.new('Microsoft Shell Controls And Automation','foo')
+ }.should raise_error WIN32OLERuntimeError
+ -> {
+ WIN32OLE_TYPE.new('Microsoft Shell Controls And Automation','Application')
+ }.should raise_error WIN32OLERuntimeError
end
it "creates WIN32OLE_TYPE object from name and valid type" do