blob: b71995e9f3f18c86eed9be344ee2534b9d2f302a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#!/usr/bin/env ruby
require 'spec_helper'
describe Puppet::Faces[: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
end
|