diff options
Diffstat (limited to 'spec/unit')
-rwxr-xr-x | spec/unit/resource.rb | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/spec/unit/resource.rb b/spec/unit/resource.rb index 2205619c5..c233dd3f8 100755 --- a/spec/unit/resource.rb +++ b/spec/unit/resource.rb @@ -422,12 +422,6 @@ describe Puppet::Resource do result["foo"].should == %w{bar eh} result["fee"].should == %w{baz} end - - it "should set all parameter values as arrays" do - resource = Puppet::Resource.new("File", "/foo") - resource[:foo] = "bar" - JSON.parse(resource.to_json)["foo"].should == %w{bar} - end end describe "when converting from json" do |