summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2018-02-13 10:11:29 -0800
committerLamont Granquist <lamont@scriptkiddie.org>2018-02-13 10:11:29 -0800
commit583bed675c8d928a03769c7743729eca9cfacde6 (patch)
treeedd801fe91471730c49ec6ae7b6067fff93d0c3e
parent4c73efee6f0962f66139bc54ed1dca2d20803b9e (diff)
downloadchef-lcg/add-nodemap-delete-class.tar.gz
Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
-rw-r--r--spec/unit/node_map_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/unit/node_map_spec.rb b/spec/unit/node_map_spec.rb
index 27ec4d5f1a..24f3bebe2a 100644
--- a/spec/unit/node_map_spec.rb
+++ b/spec/unit/node_map_spec.rb
@@ -139,14 +139,14 @@ describe Chef::NodeMap do
describe "deleting classes" do
it "deletes a class and removes the mapping completely" do
node_map.set(:thing, Bar)
- expect( node_map.delete_class(Bar) ).to eql({:thing=>[{:klass=>Bar}]})
+ expect( node_map.delete_class(Bar) ).to eql({ :thing => [{ :klass => Bar }] })
expect( node_map.get(node, :thing) ).to eql(nil)
end
it "deletes a class and leaves the mapping that still has an entry" do
node_map.set(:thing, Bar)
node_map.set(:thing, Foo)
- expect( node_map.delete_class(Bar) ).to eql({:thing=>[{:klass=>Bar}]})
+ expect( node_map.delete_class(Bar) ).to eql({ :thing => [{ :klass => Bar }] })
expect( node_map.get(node, :thing) ).to eql(Foo)
end
@@ -154,7 +154,7 @@ describe Chef::NodeMap do
node_map.set(:thing1, Bar)
node_map.set(:thing2, Bar)
node_map.set(:thing2, Foo)
- expect( node_map.delete_class(Bar) ).to eql({:thing1=>[{:klass=>Bar}], :thing2=>[{:klass=>Bar}]})
+ expect( node_map.delete_class(Bar) ).to eql({ :thing1 => [{ :klass => Bar }], :thing2 => [{ :klass => Bar }] })
expect( node_map.get(node, :thing1) ).to eql(nil)
expect( node_map.get(node, :thing2) ).to eql(Foo)
end