summaryrefslogtreecommitdiff
path: root/spec/unit/system_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/unit/system_spec.rb')
-rw-r--r--spec/unit/system_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/unit/system_spec.rb b/spec/unit/system_spec.rb
index dd7c83f0..b6607624 100644
--- a/spec/unit/system_spec.rb
+++ b/spec/unit/system_spec.rb
@@ -40,7 +40,7 @@ describe "Ohai::System" do
describe "#load_plugins" do
before(:each) do
- Ohai::OS.stub(:collect_os).and_return("ubuntu")
+ Ohai::Mixin::OS.stub(:collect_os).and_return("ubuntu")
loader = double('@loader')
Ohai::Loader.stub(:new) { loader }
@@ -70,7 +70,7 @@ describe "Ohai::System" do
it "should add loaded plugins to @v6_dependency_solver" do
Ohai::Config[:plugin_path] = ["/tmp/plugins"]
- Ohai::OS.stub(:collect_os).and_return("ubuntu")
+ Ohai::Mixin::OS.stub(:collect_os).and_return("ubuntu")
Dir.should_receive(:[]).with("/tmp/plugins/*").and_return(["/tmp/plugins/empty.rb"])
Dir.should_receive(:[]).with("/tmp/plugins/ubuntu/**/*").and_return([])
File.stub(:expand_path).with("/tmp/plugins").and_return("/tmp/plugins")