Sha256: 757b825447773eca9eeefe76ad66435e20053b4298c1dce28063aa671c8bd269
Contents?: true
Size: 1.54 KB
Versions: 262
Compression:
Stored size: 1.54 KB
Contents
#! /usr/bin/env ruby require 'spec_helper' require 'puppet/confine/false' describe Puppet::Confine::False do it "should be named :false" do expect(Puppet::Confine::False.name).to eq(:false) end it "should require a value" do expect { Puppet::Confine.new }.to raise_error(ArgumentError) end describe "when testing values" do before { @confine = Puppet::Confine::False.new("foo") } it "should use the 'pass?' method to test validity" do @confine = Puppet::Confine::False.new("foo") @confine.label = "eh" @confine.expects(:pass?).with("foo") @confine.valid? end it "should return true if the value is false" do expect(@confine.pass?(false)).to be_truthy end it "should return false if the value is not false" do expect(@confine.pass?("else")).to be_falsey end it "should produce a message that a value is true" do @confine = Puppet::Confine::False.new("foo") expect(@confine.message("eh")).to be_include("true") end end it "should be able to produce a summary with the number of incorrectly true values" do confine = Puppet::Confine::False.new %w{one two three four} confine.expects(:pass?).times(4).returns(true).returns(false).returns(true).returns(false) expect(confine.summary).to eq(2) end it "should summarize multiple instances by summing their summaries" do c1 = mock '1', :summary => 1 c2 = mock '2', :summary => 2 c3 = mock '3', :summary => 3 expect(Puppet::Confine::False.summarize([c1, c2, c3])).to eq(6) end end
Version data entries
262 entries across 262 versions & 1 rubygems