Sha256: 732775713164e8527232e6bad79e1f33cf1ea294b97afd497d27d3835919aa76
Contents?: true
Size: 1.04 KB
Versions: 6
Compression:
Stored size: 1.04 KB
Contents
# # Copyright:: Copyright (c) Progress Software Inc. # License:: Apache License, Version 2.0 # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # require "spec_helper" describe Chef::DelayedEvaluator do let(:magic) { "This is magic!" } let(:de) { Chef::DelayedEvaluator.new { magic } } describe "#inspect" do it "inspects the result rather than the Proc" do expect(de.inspect).to eq("lazy { (evaluates to) #{magic.inspect} }") end end describe "#call" do it "evaluates correctly" do expect(de.call).to eq(magic) end end end
Version data entries
6 entries across 6 versions & 1 rubygems