@@ -297,7 +297,6 @@ Feature: Manage WordPress plugins
297297 """
298298 And the return code should be 0
299299
300- @require-mysql
301300 Scenario : List plugins
302301 Given a WP install
303302
@@ -318,30 +317,6 @@ Feature: Manage WordPress plugins
318317 Automattic
319318 """
320319
321- @require-sqlite
322- Scenario : List plugins
323- Given a WP install
324-
325- When I run `wp plugin activate akismet hello`
326- Then STDOUT should not be empty
327-
328- When I run `wp plugin list --status=inactive --field=name`
329- Then STDOUT should contain:
330- """
331- sqlite-database-integration
332- """
333-
334- When I run `wp plugin list --status=active --fields=name,status,file`
335- Then STDOUT should be a table containing rows:
336- | name | status | file |
337- | akismet | active | akismet /akismet .php |
338-
339- When I run `wp plugin list --status=active --field=author`
340- Then STDOUT should contain:
341- """
342- Automattic
343- """
344-
345320 Scenario : List plugin by multiple statuses
346321 Given a WP multisite install
347322 And a wp-content/plugins/network-only.php file:
@@ -398,9 +373,6 @@ Feature: Manage WordPress plugins
398373 | name | status | update |
399374 | wordpress -importer | inactive | none |
400375
401- # Disabled for SQLite because this tests a scenario with an empty plugins directory,
402- # so the SQLite integration plugin would be missing.
403- @require-mysql
404376 Scenario : Install a plugin when directory doesn't yet exist
405377 Given a WP install
406378
@@ -425,8 +397,6 @@ Feature: Manage WordPress plugins
425397 Installing Debug Bar List Script & Style Dependencies
426398 """
427399
428- # Disabled for SQLite because this tests a specific list of plugins.
429- @require-mysql
430400 Scenario : Enable and disable all plugins
431401 Given a WP install
432402
@@ -649,9 +619,7 @@ Feature: Manage WordPress plugins
649619 | name | title | description | file |
650620 | db -error .php | | Custom database error message . | db -error .php |
651621
652- # Disabled for SQLite because this test uninstalls all plugins,
653- # including the SQLite integration plugin.
654- @require-wp-4.0 @require-mysql
622+ @require-wp-4.0
655623 Scenario : Validate installed plugin's version.
656624 Given a WP installation
657625 And I run `wp plugin uninstall --all`
0 commit comments