We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent efc29fd commit d8e6521Copy full SHA for d8e6521
1 file changed
features/config-create.feature
@@ -263,16 +263,16 @@ Feature: Create a wp-config file
263
Given an empty directory
264
And WP files
265
266
- When I run `wp config create --skip-check --dbname=somedb --dbuser=someuser --dbpass="my\\password"`
+ When I run `wp config create --skip-check --dbname=somedb --dbuser=someuser --dbpass="my\password"`
267
Then the wp-config.php file should contain:
268
"""
269
- define( 'DB_PASSWORD', 'my\\\\password' )
+ define( 'DB_PASSWORD', 'my\\password' )
270
271
272
When I run `wp config get DB_PASSWORD`
273
Then STDOUT should be:
274
275
- my\\password
+ my\password
276
277
278
Scenario: wp-config.php in parent folder should not prevent config create in subfolder
0 commit comments