Skip to content

Commit 3457795

Browse files
author
Jonathan Gazeley
committed
Add params to the spec tests
1 parent 19c24db commit 3457795

File tree

1 file changed

+13
-8
lines changed

1 file changed

+13
-8
lines changed

spec/classes/puppet_passenger_spec.rb

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,19 @@
33
describe 'puppet::passenger', :type => :class do
44
let (:params) do
55
{
6-
:puppet_passenger_port => '8140',
7-
:puppet_docroot => '/etc/puppet/rack/public/',
8-
:apache_serveradmin => 'root',
9-
:puppet_conf => '/etc/puppet/puppet.conf',
10-
:puppet_ssldir => '/var/lib/puppet/ssl',
11-
:certname => 'test.test.com',
12-
:conf_dir => '/etc/puppet',
13-
:dns_alt_names => ['puppet'],
6+
:puppet_passenger_port => '8140',
7+
:puppet_docroot => '/etc/puppet/rack/public/',
8+
:apache_serveradmin => 'root',
9+
:puppet_conf => '/etc/puppet/puppet.conf',
10+
:puppet_ssldir => '/var/lib/puppet/ssl',
11+
:certname => 'test.test.com',
12+
:conf_dir => '/etc/puppet',
13+
:dns_alt_names => ['puppet'],
14+
:passenger_max_pool_size => '4',
15+
:passenger_high_performance => true,
16+
:passenger_max_requests => '1000',
17+
:passenger_stat_throttle_rate => '30',
18+
1419
}
1520
end
1621
context 'on Debian' do

0 commit comments

Comments
 (0)