Skip to content

Commit 30060af

Browse files
committed
Merge pull request puppetlabs#717 from gerhardsam/acceptance/desc-fixes
Fix postgresql::server acceptance test descriptions
2 parents 8a84929 + 2a78c47 commit 30060af

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

spec/acceptance/00-utf8_encoding_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# These tests are designed to ensure that the module, when ran with defaults,
44
# sets up everything correctly and allows us to connect to Postgres.
5-
describe 'postgres::server', :unless => UNSUPPORTED_PLATFORMS.include?(fact('osfamily')) do
5+
describe 'postgresql::server', :unless => UNSUPPORTED_PLATFORMS.include?(fact('osfamily')) do
66
it 'with defaults' do
77
pp = <<-EOS
88
class { 'postgresql::globals':

spec/acceptance/alternative_port_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# These tests ensure that postgres can change itself to an alternative port
44
# properly.
5-
describe 'postgres::server', :unless => UNSUPPORTED_PLATFORMS.include?(fact('osfamily')) do
5+
describe 'postgresql::server', :unless => UNSUPPORTED_PLATFORMS.include?(fact('osfamily')) do
66
it 'on an alternative port' do
77
pp = <<-EOS
88
class { 'postgresql::server': port => '55433' }

spec/acceptance/default_parameters_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# These tests are designed to ensure that the module, when ran with defaults,
44
# sets up everything correctly and allows us to connect to Postgres.
5-
describe 'postgres::server', :unless => UNSUPPORTED_PLATFORMS.include?(fact('osfamily')) do
5+
describe 'postgresql::server', :unless => UNSUPPORTED_PLATFORMS.include?(fact('osfamily')) do
66
it 'with defaults' do
77
pp = <<-EOS
88
class { 'postgresql::server': }

spec/acceptance/z_alternative_pgdata_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
shell 'setenforce 0'
99
end
1010

11-
describe 'postgres::server', :unless => UNSUPPORTED_PLATFORMS.include?(fact('osfamily')) do
11+
describe 'postgresql::server', :unless => UNSUPPORTED_PLATFORMS.include?(fact('osfamily')) do
1212
it 'on an alternative pgdata location' do
1313
pp = <<-EOS
1414
#file { '/var/lib/pgsql': ensure => directory, } ->

0 commit comments

Comments
 (0)