File: boolean_spec.rb

package info (click to toggle)
puppet 5.5.22-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 21,316 kB
  • sloc: ruby: 254,925; sh: 1,608; xml: 219; makefile: 153; sql: 103
file content (35 lines) | stat: -rw-r--r-- 1,079 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
require 'spec_helper'
require 'puppet'
require 'puppet/parameter/boolean'

describe Puppet::Parameter::Boolean do
  let (:resource) { double('resource') }
  describe "after initvars" do
    before { described_class.initvars }
    it "should have the correct value_collection" do
      expect(described_class.value_collection.values.sort).to eq(
          [:true, :false, :yes, :no].sort
      )
    end
  end

  describe "instances" do
    subject { described_class.new(:resource => resource) }

    [ true, :true, 'true', :yes, 'yes', 'TrUe', 'yEs' ].each do |arg|
      it "should munge #{arg.inspect} as true" do
        expect(subject.munge(arg)).to eq(true)
      end
    end
    [ false, :false, 'false', :no, 'no', 'FaLSE', 'nO' ].each do |arg|
      it "should munge #{arg.inspect} as false" do
        expect(subject.munge(arg)).to eq(false)
      end
    end
    [ nil, :undef, 'undef', '0', 0, '1', 1, 9284 ].each do |arg|
      it "should fail to munge #{arg.inspect}" do
        expect { subject.munge(arg) }.to raise_error Puppet::Error
      end
    end
  end
end