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 c9361a5 commit ba2fa41Copy full SHA for ba2fa41
features/plugin.feature
@@ -676,3 +676,16 @@ Feature: Manage WordPress plugins
676
Error: Parameter errors:
677
Invalid value specified for 'status' (Filter the output by plugin status.)
678
"""
679
+
680
+ Scenario: Listing mu-plugins should include name and title
681
+ Given a WP install
682
+ And a wp-content/mu-plugins/test-mu.php file:
683
+ """
684
+ <?php
685
+ // Plugin Name: Test mu-plugin
686
687
688
+ When I run `wp plugin list --fields=name,title`
689
+ Then STDOUT should be a table containing rows:
690
+ | name | title |
691
+ | test-mu | Test mu-plugin |
0 commit comments