Sha256: cd504190254aa079440ed0defacde2613d5eaa702f584e184db4ab218026fe39
Contents?: true
Size: 998 Bytes
Versions: 4
Compression:
Stored size: 998 Bytes
Contents
#! /usr/bin/env ruby -S rspec require 'spec_helper' require 'puppet/face' describe Puppet::Face[:config, '0.0.1'] do it "should use Settings#print_config_options when asked to print" do Puppet.settings.stubs(:puts) Puppet.settings.expects(:print_config_options) subject.print end it "should set 'configprint' to all desired values and call print_config_options when a specific value is provided" do Puppet.settings.stubs(:puts) Puppet.settings.expects(:print_config_options) subject.print("libdir", "ssldir") Puppet.settings[:configprint].should == "libdir,ssldir" end it "should always return nil" do Puppet.settings.stubs(:puts) Puppet.settings.expects(:print_config_options) subject.print("libdir").should be_nil end it "should default to all when no arguments are given" do Puppet.settings.stubs(:puts) Puppet.settings.expects(:print_config_options) subject.print Puppet.settings[:configprint].should == "all" end end
Version data entries
4 entries across 4 versions & 1 rubygems