Merge pull request #717 from gerhardsam/acceptance/desc-fixes
Fix postgresql::server acceptance test descriptions
This commit is contained in:
commit
30060afd24
4 changed files with 4 additions and 4 deletions
|
@ -2,7 +2,7 @@ require 'spec_helper_acceptance'
|
|||
|
||||
# These tests are designed to ensure that the module, when ran with defaults,
|
||||
# sets up everything correctly and allows us to connect to Postgres.
|
||||
describe 'postgres::server', :unless => UNSUPPORTED_PLATFORMS.include?(fact('osfamily')) do
|
||||
describe 'postgresql::server', :unless => UNSUPPORTED_PLATFORMS.include?(fact('osfamily')) do
|
||||
it 'with defaults' do
|
||||
pp = <<-EOS
|
||||
class { 'postgresql::globals':
|
||||
|
|
|
@ -2,7 +2,7 @@ require 'spec_helper_acceptance'
|
|||
|
||||
# These tests ensure that postgres can change itself to an alternative port
|
||||
# properly.
|
||||
describe 'postgres::server', :unless => UNSUPPORTED_PLATFORMS.include?(fact('osfamily')) do
|
||||
describe 'postgresql::server', :unless => UNSUPPORTED_PLATFORMS.include?(fact('osfamily')) do
|
||||
it 'on an alternative port' do
|
||||
pp = <<-EOS
|
||||
class { 'postgresql::server': port => '55433' }
|
||||
|
|
|
@ -2,7 +2,7 @@ require 'spec_helper_acceptance'
|
|||
|
||||
# These tests are designed to ensure that the module, when ran with defaults,
|
||||
# sets up everything correctly and allows us to connect to Postgres.
|
||||
describe 'postgres::server', :unless => UNSUPPORTED_PLATFORMS.include?(fact('osfamily')) do
|
||||
describe 'postgresql::server', :unless => UNSUPPORTED_PLATFORMS.include?(fact('osfamily')) do
|
||||
it 'with defaults' do
|
||||
pp = <<-EOS
|
||||
class { 'postgresql::server': }
|
||||
|
|
|
@ -8,7 +8,7 @@ if fact('osfamily') == 'RedHat' and fact('selinux') == 'true'
|
|||
shell 'setenforce 0'
|
||||
end
|
||||
|
||||
describe 'postgres::server', :unless => UNSUPPORTED_PLATFORMS.include?(fact('osfamily')) do
|
||||
describe 'postgresql::server', :unless => UNSUPPORTED_PLATFORMS.include?(fact('osfamily')) do
|
||||
it 'on an alternative pgdata location' do
|
||||
pp = <<-EOS
|
||||
#file { '/var/lib/pgsql': ensure => directory, } ->
|
||||
|
|
Loading…
Reference in a new issue