From 50d35bee9f954aa1a7212dcc44c95a4a419e0500 Mon Sep 17 00:00:00 2001 From: Daniel Calviño Sánchez Date: Fri, 6 Apr 2018 04:13:42 +0200 Subject: Add context classes to Composer autoload MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit In order to autoload the server context classes the "bootstrap" directory was explicitly listed in Behat autoload configuration. This is fine in the configuration of acceptance tests for the server, but it would force the configuration of acceptance tests for the apps to explicitly include the path for the server context classes to be able to use them (for example, for the login step). Besides with its own configuration Behat also supports autoloading classes using Composer, so now context classes are autoloaded using Composer instead; thanks to this the server context classes are autoloaded also in the acceptance tests for apps without any explicit configuration in them. Signed-off-by: Daniel Calviño Sánchez --- tests/acceptance/composer.json | 2 +- tests/acceptance/config/behat.yml | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) (limited to 'tests/acceptance') diff --git a/tests/acceptance/composer.json b/tests/acceptance/composer.json index 87b6ba4a22c..244aa976692 100644 --- a/tests/acceptance/composer.json +++ b/tests/acceptance/composer.json @@ -8,7 +8,7 @@ }, "autoload": { "psr-4": { - "": "features/core" + "": ["features/bootstrap", "features/core"] } } } diff --git a/tests/acceptance/config/behat.yml b/tests/acceptance/config/behat.yml index 0eda2b19803..3cd71eec047 100644 --- a/tests/acceptance/config/behat.yml +++ b/tests/acceptance/config/behat.yml @@ -1,6 +1,4 @@ default: - autoload: - '': %paths.base%/../features/bootstrap suites: default: paths: -- cgit v1.2.3