We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9984d6 commit 4b86453Copy full SHA for 4b86453
features/search-replace-export.feature
@@ -333,3 +333,18 @@ Feature: Search / replace with file export
333
wp_users display_name 0 PHP
334
"""
335
And STDERR should be empty
336
+
337
+ Scenario: Search / replace should remove placeholder escape on export
338
+ Given a WP install
339
+ And I run `wp post create --post_title=test-remove-placeholder-escape% --porcelain`
340
+ Then save STDOUT as {POST_ID}
341
342
+ When I run `wp search-replace baz bar --export`
343
+ Then STDOUT should contain:
344
+ """
345
+ 'test-remove-placeholder-escape%'
346
347
+ And STDOUT should contain:
348
349
+ 'test-remove-placeholder-escape{'
350
0 commit comments