From c44e23c3e1a3429811e362f7cb41c715e6559255 Mon Sep 17 00:00:00 2001 From: webchick Date: Thu, 28 Nov 2013 00:39:43 -0800 Subject: [PATCH] Issue #2107685 by vijaycs85: Provide configuration schema for Simpletest module. --- .../config/schema/simpletest.schema.yml | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 core/modules/simpletest/config/schema/simpletest.schema.yml diff --git a/core/modules/simpletest/config/schema/simpletest.schema.yml b/core/modules/simpletest/config/schema/simpletest.schema.yml new file mode 100644 index 000000000000..5423adc08009 --- /dev/null +++ b/core/modules/simpletest/config/schema/simpletest.schema.yml @@ -0,0 +1,25 @@ +# Schema for the configuration files of the Simpletest module. + +simpletest.settings: + type: mapping + label: 'Testing' + mapping: + clear_results: + type: boolean + label: 'Clear results after each complete test suite run' + verbose: + type: boolean + label: 'Provide verbose information when running tests' + httpauth: + type: mapping + label: 'HTTP authentication' + mapping: + method: + type: integer + label: 'Method' + username: + type: string + label: 'Username' + password: + type: string + label: 'Password'