From 66b5739bfa351c9b1c8d699d8a8a35b20e7d895c Mon Sep 17 00:00:00 2001 From: Max Cohen Date: Fri, 24 Nov 2023 14:53:45 +0600 Subject: [PATCH] Update Db.php --- src/Codeception/Module/Db.php | 44 +++++++++++++++++------------------ 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/src/Codeception/Module/Db.php b/src/Codeception/Module/Db.php index db418bd3..d84bec06 100644 --- a/src/Codeception/Module/Db.php +++ b/src/Codeception/Module/Db.php @@ -63,29 +63,29 @@ * * databases - include more database configs and switch between them in tests. * * initial_queries - list of queries to be executed right after connection to the database has been initiated, i.e. creating the database if it does not exist or preparing the database collation * * skip_cleanup_if_failed - Do not perform the cleanup if the tests failed. If this is used, manual cleanup might be required when re-running - * ## Example * - * modules: - * enabled: - * - Db: - * dsn: 'mysql:host=localhost;dbname=testdb' - * user: 'root' - * password: '' - * dump: 'tests/_data/dump.sql' - * populate: true - * cleanup: true - * reconnect: true - * waitlock: 10 - * skip_cleanup_if_failed: true - * ssl_key: '/path/to/client-key.pem' - * ssl_cert: '/path/to/client-cert.pem' - * ssl_ca: '/path/to/ca-cert.pem' - * ssl_verify_server_cert: false - * ssl_cipher: 'AES256-SHA' - * initial_queries: - * - 'CREATE DATABASE IF NOT EXISTS temp_db;' - * - 'USE temp_db;' - * - 'SET NAMES utf8;' + * ## Example + * modules: + * enabled: + * - Db: + * dsn: 'mysql:host=localhost;dbname=testdb' + * user: 'root' + * password: '' + * dump: 'tests/_data/dump.sql' + * populate: true + * cleanup: true + * reconnect: true + * waitlock: 10 + * skip_cleanup_if_failed: true + * ssl_key: '/path/to/client-key.pem' + * ssl_cert: '/path/to/client-cert.pem' + * ssl_ca: '/path/to/ca-cert.pem' + * ssl_verify_server_cert: false + * ssl_cipher: 'AES256-SHA' + * initial_queries: + * - 'CREATE DATABASE IF NOT EXISTS temp_db;' + * - 'USE temp_db;' + * - 'SET NAMES utf8;' * * ## Example with multi-dumps * modules: