1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2025-06-14 23:44:58 +02:00

Split full module into mock and real to allow better test combinations and save time in CI.

This commit is contained in:
David Steele
2017-06-19 18:55:00 -04:00
parent f6d4457d58
commit 692b1e274a
21 changed files with 49 additions and 58 deletions

View File

@ -1,7 +1,7 @@
####################################################################################################################################
# FullSyntheticTest.pm - Tests for all commands that can be run against synthetic data
# Test All Commands on Mock Data
####################################################################################################################################
package pgBackRestTest::Module::Full::FullSyntheticTest;
package pgBackRestTest::Module::Mock::MockAllTest;
use parent 'pgBackRestTest::Env::HostEnvTest';
####################################################################################################################################

View File

@ -1,7 +1,7 @@
####################################################################################################################################
# FullRealTest.pm - Tests for all commands against a real database
# Test All Commands On PostgreSQL Clusters
####################################################################################################################################
package pgBackRestTest::Module::Full::FullRealTest;
package pgBackRestTest::Module::Real::RealAllTest;
use parent 'pgBackRestTest::Env::HostEnvTest';
####################################################################################################################################