Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Running the following as root in MySQL should do the trick:
Finally, to run the tests:

vendor/bin/phpunit
vendor/bin/behat --expand
vendor/bin/behat

Finally...
----------
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"require": {
"php": ">=5.3.2",
"wp-cli/php-cli-tools": "dev-master",
"mustache/mustache": "2.3.x"
"mustache/mustache": "2.0.x"
},
"suggest": {
"d11wtq/boris": "Enhanced `wp shell` functionality"
Expand Down
107 changes: 52 additions & 55 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 0 additions & 4 deletions features/core.feature
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ Feature: Manage WordPress installation

When I try `wp core is-installed`
Then the return code should be 1
And STDERR should not be empty

When I run `wp core download --quiet`
Then the wp-settings.php file should exist
Expand All @@ -23,7 +22,6 @@ Feature: Manage WordPress installation

When I try `wp core is-installed`
Then the return code should be 1
And STDERR should not be empty

When I try `wp core install`
Then the return code should be 1
Expand Down Expand Up @@ -71,7 +69,6 @@ Feature: Manage WordPress installation

When I try `wp core is-installed`
Then the return code should be 1
And STDERR should not be empty

When I try `wp`
Then the return code should be 1
Expand All @@ -91,7 +88,6 @@ Feature: Manage WordPress installation
Given a WP install

When I run `wp core is-installed`
Then STDOUT should be empty

When I run `wp eval 'var_export( is_admin() );'`
Then STDOUT should be:
Expand Down
6 changes: 3 additions & 3 deletions features/option.feature
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Feature: Manage WordPress options
Given a WP install

When I run `wp option add foo 'bar'`
Then STDOUT should not be empty
Then STDOUT should be empty

When I run `wp option get foo`
Then STDOUT should be:
Expand All @@ -13,7 +13,7 @@ Feature: Manage WordPress options
"""

When I run `wp option set foo '[ 1, 2 ]' --format=json`
Then STDOUT should not be empty
Then STDOUT should be empty

When I run `wp option get foo --format=json`
Then STDOUT should be:
Expand All @@ -22,7 +22,7 @@ Feature: Manage WordPress options
"""

When I run `wp option delete foo`
Then STDOUT should not be empty
Then STDOUT should be empty

When I try `wp option get foo`
Then the return code should be 1
Loading