summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorAdam Edwards <adamed@opscode.com>2014-05-12 20:49:54 -0700
committerAdam Edwards <adamed@opscode.com>2014-05-12 20:49:54 -0700
commit2582f58b72527246f81af2bc4913182b11a3c423 (patch)
treec1c08c74e7d7f47298ccbd2a027d0eede4c83de7 /spec
downloadwmi-lite-2582f58b72527246f81af2bc4913182b11a3c423.tar.gz
Initial commit
Diffstat (limited to 'spec')
-rw-r--r--spec/spec_helper.rb8
-rw-r--r--spec/unit/wmi_spec.rb36
2 files changed, 44 insertions, 0 deletions
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
new file mode 100644
index 0000000..07d2193
--- /dev/null
+++ b/spec/spec_helper.rb
@@ -0,0 +1,8 @@
+# $:.unshift File.expand_path('../../lib', __FILE__)
+require 'rspec'
+require 'wmi_lite/wmi'
+require 'wmi_lite/wmi/wmi_instance'
+
+
+
+
diff --git a/spec/unit/wmi_spec.rb b/spec/unit/wmi_spec.rb
new file mode 100644
index 0000000..be79e30
--- /dev/null
+++ b/spec/unit/wmi_spec.rb
@@ -0,0 +1,36 @@
+#
+# Author:: Adam Edwards (<adamed@getchef.com>)
+#
+# Copyright:: 2014, Chef Software, Inc.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+require 'wmi_lite/wmi'
+
+describe WmiLite::Wmi do
+
+ let(:wbem_connection) { double 'WIN32OLE', :ExecQuery => [] }
+ let(:wbem_locator) { double 'WIN32OLE', :ConnectServer => wbem_connection }
+
+ before do
+ WIN32OLE.stub(:new).and_return(wbem_locator)
+ end
+
+ let(:wmi) { WmiLite::Wmi.new }
+
+ it "should not fail with empty query results" do
+ result = wmi.query('')
+ expect( result ).to eq([])
+ end
+end