@@ -61,7 +61,7 @@ Feature: Manage WordPress plugins
6161 When I run `wp plugin status`
6262 Then STDOUT should not be empty
6363
64- When I run `wp plugin list`
64+ When I run `wp plugin list --fields=name,status,update,version,update_version,auto_update `
6565 Then STDOUT should be a table containing rows:
6666 | name | status | update | version | update_version | auto_update |
6767 | Zombieland | active | none | 0 .1 .0 | | off |
@@ -107,7 +107,8 @@ Feature: Manage WordPress plugins
107107 And STDOUT should be empty
108108 And the return code should be 1
109109
110- @require-wp-4.0
110+ # WordPress Importer currently requires at least WP 5.2.
111+ @require-wp-5.2
111112 Scenario : Install a plugin, activate, then force install an older version of the plugin
112113 Given a WP install
113114
@@ -579,12 +580,13 @@ Feature: Manage WordPress plugins
579580 """
580581 And the return code should be 0
581582
582- @require-wp-4.7
583+ # Akismet currently requires WordPress 5.8, so there's a warning because of it.
584+ @require-wp-5.8
583585 Scenario : Plugin hidden by "all_plugins" filter
584586 Given a WP install
585587 And these installed and active plugins:
586588 """
587- akismet
589+ hello-dolly
588590 site-secrets
589591 """
590592 And a wp-content/mu-plugins/hide-us-plugin.php file:
@@ -753,7 +755,7 @@ Feature: Manage WordPress plugins
753755 """
754756 And I run `wp plugin activate foo`
755757
756- When I run `wp plugin list`
758+ When I run `wp plugin list --fields=name,status,update,version,update_version,auto_update `
757759 Then STDOUT should be a table containing rows:
758760 | name | status | update | version | update_version | auto_update |
759761 | foo | active | none | | | off |
@@ -795,7 +797,7 @@ Feature: Manage WordPress plugins
795797 """
796798 And I run `wp plugin activate foo`
797799
798- When I run `wp plugin list`
800+ When I run `wp plugin list --fields=name,status,update,version,update_version,auto_update `
799801 Then STDOUT should be a table containing rows:
800802 | name | status | update | version | update_version | auto_update |
801803 | foo | active | none | | | off |
0 commit comments