@@ -2,7 +2,7 @@ Feature: Show the status of auto-updates for WordPress plugins
22
33 Background :
44 Given a WP install
5- And I run `wp plugin install duplicate-post https://github.com/wp-cli/sample-plugin/archive/refs/heads/master.zip --ignore-requirements`
5+ And I run `wp plugin install debug-bar https://github.com/wp-cli/sample-plugin/archive/refs/heads/master.zip --ignore-requirements`
66
77 @require-wp-5.5
88 Scenario : Show an error if required params are missing
@@ -23,10 +23,10 @@ Feature: Show the status of auto-updates for WordPress plugins
2323
2424 @require-wp-5.5
2525 Scenario : Show the status of auto-updates multiple plugins
26- When I run `wp plugin auto-updates status duplicate-post sample-plugin`
26+ When I run `wp plugin auto-updates status debug-bar sample-plugin`
2727 Then STDOUT should be a table containing rows:
2828 | name | status |
29- | duplicate - post | disabled |
29+ | debug - bar | disabled |
3030 | sample -plugin | disabled |
3131 And the return code should be 0
3232
@@ -36,7 +36,7 @@ Feature: Show the status of auto-updates for WordPress plugins
3636 Then STDOUT should be a table containing rows:
3737 | name | status |
3838 | akismet | disabled |
39- | duplicate - post | disabled |
39+ | debug - bar | disabled |
4040 | sample -plugin | disabled |
4141 And the return code should be 0
4242
@@ -45,7 +45,7 @@ Feature: Show the status of auto-updates for WordPress plugins
4545 Then STDOUT should be a table containing rows:
4646 | name | status |
4747 | akismet | enabled |
48- | duplicate - post | enabled |
48+ | debug - bar | enabled |
4949 | sample -plugin | enabled |
5050 And the return code should be 0
5151
@@ -57,7 +57,7 @@ Feature: Show the status of auto-updates for WordPress plugins
5757 Then STDOUT should be a table containing rows:
5858 | name | status |
5959 | akismet | disabled |
60- | duplicate - post | disabled |
60+ | debug - bar | disabled |
6161 | sample -plugin | enabled |
6262 And the return code should be 0
6363
@@ -71,7 +71,7 @@ Feature: Show the status of auto-updates for WordPress plugins
7171 Then STDOUT should be a table containing rows:
7272 | name | status |
7373 | akismet | disabled |
74- | duplicate - post | disabled |
74+ | debug - bar | disabled |
7575 And the return code should be 0
7676
7777 When I try `wp plugin auto-updates status --all --enabled-only --disabled-only`
@@ -92,7 +92,7 @@ Feature: Show the status of auto-updates for WordPress plugins
9292 """
9393 And STDOUT should contain:
9494 """
95- duplicate-post
95+ debug-bar
9696 """
9797
9898 When I run `wp plugin auto-updates status sample-plugin --field=status`
@@ -114,7 +114,7 @@ Feature: Show the status of auto-updates for WordPress plugins
114114 """
115115 And STDOUT should contain:
116116 """
117- {"name":"duplicate-post ","status":"disabled"}
117+ {"name":"debug-bar ","status":"disabled"}
118118 """
119119
120120 When I run `wp plugin auto-updates status --all --format=csv`
@@ -128,7 +128,7 @@ Feature: Show the status of auto-updates for WordPress plugins
128128 """
129129 And STDOUT should contain:
130130 """
131- duplicate-post ,disabled
131+ debug-bar ,disabled
132132 """
133133
134134 @require-wp-5.5
0 commit comments