summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorHunter Haugen <h.haugen@gmail.com>2012-10-12 11:28:24 -0700
committerHunter Haugen <h.haugen@gmail.com>2012-10-12 11:32:01 -0700
commit3ab65f56a61cfedbe75a3b41143f0d44fbad0a93 (patch)
tree1318b8a2daf4ab737d4e01b85328315a2df926ac /spec
parentf96656440027fbfc73bccf1911c817d7e4392713 (diff)
Rename everything!
What is renamed: - Class/define: - haproxy::config to haproxy::listen - haproxy::data to haproxy::params - Parameters: - haproxy::listen listen_ip to ipaddress - haproxy::listen config_options to options - haproxy haproxy_global_options to global_options - haproxy haproxy_defaults_options to defaults_options
Diffstat (limited to 'spec')
-rw-r--r--spec/defines/listen_spec.rb (renamed from spec/defines/config_spec.rb)8
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/defines/config_spec.rb b/spec/defines/listen_spec.rb
index 6a1af44..c4539b8 100644
--- a/spec/defines/config_spec.rb
+++ b/spec/defines/listen_spec.rb
@@ -1,6 +1,6 @@
require 'spec_helper'
-describe 'haproxy::config' do
+describe 'haproxy::listen' do
let(:title) { 'tyler' }
let(:facts) {{ :ipaddress => '1.1.1.1' }}
context "when only one port is provided" do
@@ -10,7 +10,7 @@ describe 'haproxy::config' do
}
end
- it { should contain_concat__fragment('croy_config_block').with(
+ it { should contain_concat__fragment('croy_listen_block').with(
'order' => '20',
'target' => '/etc/haproxy/haproxy.cfg',
'content' => "\nlisten croy 1.1.1.1:18140\n balance roundrobin\n option tcplog\n option ssl-hello-chk\n"
@@ -19,7 +19,7 @@ describe 'haproxy::config' do
context "when an array of ports is provided" do
let(:params) do
{ :name => 'apache',
- :listen_ip => '23.23.23.23',
+ :ipaddress => '23.23.23.23',
:ports => [
'80',
'443',
@@ -27,7 +27,7 @@ describe 'haproxy::config' do
}
end
- it { should contain_concat__fragment('apache_config_block').with(
+ it { should contain_concat__fragment('apache_listen_block').with(
'order' => '20',
'target' => '/etc/haproxy/haproxy.cfg',
'content' => "\nlisten apache 23.23.23.23:80,23.23.23.23:443\n balance roundrobin\n option tcplog\n option ssl-hello-chk\n"