summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
Diffstat (limited to 'spec')
-rw-r--r--spec/unit/platform_spec.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/spec/unit/platform_spec.rb b/spec/unit/platform_spec.rb
index 3d7aef98a0..029fc29aae 100644
--- a/spec/unit/platform_spec.rb
+++ b/spec/unit/platform_spec.rb
@@ -254,6 +254,16 @@ describe Chef::Platform do
end
+ it "does not overwrite the platform map when using :default platform" do
+ Chef::Platform.set(
+ :resource => :file,
+ :platform => :default,
+ :provider => "new school"
+ )
+ Chef::Platform.platforms[:default][:file].should eql("new school")
+ Chef::Platform.platforms[:default][:cat].should eql("nice")
+ end
+
end
context "while testing the configured platform data" do