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.rb18
1 files changed, 9 insertions, 9 deletions
diff --git a/spec/unit/system_spec.rb b/spec/unit/system_spec.rb
index 3e704df3..c74d1f90 100644
--- a/spec/unit/system_spec.rb
+++ b/spec/unit/system_spec.rb
@@ -102,25 +102,25 @@ describe "Ohai::System" do
Ohai.plugin(:Zoo) do
provides 'seals'
end
-EOF
+ EOF
with_plugin("repo1/lake.rb", <<~EOF)
Ohai.plugin(:Nature) do
provides 'fish'
end
-EOF
+ EOF
with_plugin("repo2/nature.rb", <<~EOF)
Ohai.plugin(:Nature) do
provides 'crabs'
end
-EOF
+ EOF
with_plugin("repo2/mountain.rb", <<~EOF)
Ohai.plugin(:Nature) do
provides 'bear'
end
-EOF
+ EOF
before do
Ohai.config[:plugin_path] = [ path_to("repo1"), path_to("repo2") ]
@@ -150,7 +150,7 @@ EOF
message("platform_specific_message")
end
end
-EOF
+ EOF
it "should collect platform specific" do
Ohai.config[:plugin_path] = [ path_to(".") ]
@@ -168,7 +168,7 @@ EOF
zoo("animals")
end
end
-EOF
+ EOF
with_plugin("park.rb", <<~EOF)
Ohai.plugin(:Park) do
@@ -177,7 +177,7 @@ EOF
park("plants")
end
end
-EOF
+ EOF
with_plugin("fails.rb", <<~EOF)
Ohai.plugin(:Fails) do
@@ -186,7 +186,7 @@ EOF
fail 'thing'
end
end
-EOF
+ EOF
with_plugin("optional.rb", <<~EOF)
Ohai.plugin(:Optional) do
@@ -197,7 +197,7 @@ EOF
optional("canteloupe")
end
end
-EOF
+ EOF
it "should collect data from all the plugins" do
Ohai.config[:plugin_path] = [ path_to(".") ]