We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 900416b commit 0b24d51Copy full SHA for 0b24d51
features/config-create.feature
@@ -216,6 +216,12 @@ Feature: Create a wp-config file
216
define( 'DB_HOST', 'localhost:{SOCKET}' );
217
"""
218
219
+ When I run `wp config create --skip-check --dbname=somedb --dbuser=someuser --dbpass='my\\password'`
220
+ Then the wp-config.php file should contain:
221
+ """
222
+ define( 'DB_PASSWORD', 'my\\\\password' )
223
224
+
225
@require-php-7.0
226
Scenario: Configure with salts generated
227
Given an empty directory
0 commit comments