Feature: Runner WP-CLI Scenario: Path argument should be slashed correctly When I try `wp no-such-command --path=/foo --debug` Then STDERR should contain: """ ABSPATH defined: /foo/ """ When I try `wp no-such-command --path=/foo/ --debug` Then STDERR should contain: """ ABSPATH defined: /foo/ """ When I try `wp no-such-command --path=/foo\\ --debug` Then STDERR should contain: """ ABSPATH defined: /foo/ """ Scenario: ABSPATH can be defined outside of WP-CLI Given an empty directory And a wp-cli.yml file: """ require: - abspath.php """ And a abspath.php file: """