@@ -14,7 +14,7 @@ Feature: Search / replace with file export
14
14
"""
15
15
And STDOUT should contain:
16
16
"""
17
- ('1', 'siteurl', 'https://example.net', 'yes'),
17
+ ('1', 'siteurl', 'https://example.net',
18
18
"""
19
19
20
20
When I run `wp option get home`
@@ -51,13 +51,19 @@ Feature: Search / replace with file export
51
51
Then STDOUT should contain:
52
52
"""
53
53
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES{SPACE}
54
- ('1', 'siteurl', 'https://example.com', 'yes'),
54
+ """
55
+ And STDOUT should contain:
56
+ """
57
+ ('1', 'siteurl', 'https://example.com'
55
58
"""
56
59
57
60
When I run `wp search-replace example.com example.net --skip-columns=option_value --export --export_insert_size=1`
58
61
Then STDOUT should contain:
59
62
"""
60
- ('1', 'siteurl', 'https://example.com', 'yes');
63
+ ('1', 'siteurl', 'https://example.com'
64
+ """
65
+ And STDOUT should contain:
66
+ """
61
67
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES{SPACE}
62
68
"""
63
69
0 commit comments