summaryrefslogtreecommitdiff
path: root/spec/ruby/library/win32ole/win32ole_variable/variable_kind_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/library/win32ole/win32ole_variable/variable_kind_spec.rb')
-rw-r--r--spec/ruby/library/win32ole/win32ole_variable/variable_kind_spec.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/spec/ruby/library/win32ole/win32ole_variable/variable_kind_spec.rb b/spec/ruby/library/win32ole/win32ole_variable/variable_kind_spec.rb
index 4cca7f8874..2cf1d7f1f2 100644
--- a/spec/ruby/library/win32ole/win32ole_variable/variable_kind_spec.rb
+++ b/spec/ruby/library/win32ole/win32ole_variable/variable_kind_spec.rb
@@ -1,3 +1,4 @@
+require_relative "../../../spec_helper"
platform_is :windows do
require 'win32ole'
@@ -5,12 +6,12 @@ platform_is :windows do
# not sure how WIN32OLE_VARIABLE objects are supposed to be generated
# WIN32OLE_VARIABLE.new even seg faults in some cases
before :each do
- ole_type = WIN32OLE_TYPE.new("Microsoft Shell Controls And Automation", "ShellSpecialFolderConstants")
+ ole_type = WIN32OLE::Type.new("Microsoft Shell Controls And Automation", "ShellSpecialFolderConstants")
@var = ole_type.variables[0]
end
it "returns a String" do
- @var.variable_kind.should be_kind_of String
+ @var.variable_kind.should.is_a? String
@var.variable_kind.should == 'CONSTANT'
end