blob: 2eb04a81b4dac0e7fd0c8b484053226d81d2e681 (
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 File.expand_path(File.dirname(__FILE__) + '/../../spec_helper.rb')
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
|