2012-12-03 01:41:35 +01:00
|
|
|
require 'support/postgres_test_utils'
|
|
|
|
require 'support/shared_contexts/pg_vm_context'
|
|
|
|
|
2012-12-03 00:28:25 +01:00
|
|
|
shared_examples :non_default_postgres do
|
2012-12-03 01:41:35 +01:00
|
|
|
include PostgresTestUtils
|
|
|
|
include_context :pg_vm_context
|
|
|
|
|
|
|
|
# this method is required by the pg_vm shared context
|
|
|
|
def install_postgres
|
2012-12-03 05:47:04 +01:00
|
|
|
sudo_and_log(vm, 'puppet apply -e "include postgresql_tests::non_default::test_install"')
|
2012-12-03 01:41:35 +01:00
|
|
|
end
|
|
|
|
|
2012-12-03 00:28:25 +01:00
|
|
|
it "doesn't have any tests yet'" do
|
|
|
|
end
|
|
|
|
end
|