Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Appelman <robin@icewind.nl>2018-09-05 17:35:49 +0300
committerRobin Appelman <robin@icewind.nl>2018-09-20 18:03:47 +0300
commit26e2957aeaa984ac5e94f27d3a0c08af456b78e2 (patch)
tree02229b4141af44461ee29a2c2beff909f198e535 /build/integration/config
parenta7a06b2349979cd26d7f0f70ecc03a6848834294 (diff)
quote paths in behat.yml
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'build/integration/config')
-rw-r--r--build/integration/config/behat.yml20
1 files changed, 10 insertions, 10 deletions
diff --git a/build/integration/config/behat.yml b/build/integration/config/behat.yml
index 428d4d45b78..7fd3686b8bb 100644
--- a/build/integration/config/behat.yml
+++ b/build/integration/config/behat.yml
@@ -1,10 +1,10 @@
default:
autoload:
- '': %paths.base%/../features/bootstrap
+ '': "%paths.base%/../features/bootstrap"
suites:
default:
paths:
- - %paths.base%/../features
+ - "%paths.base%/../features"
contexts:
- FeatureContext:
baseUrl: http://localhost:8080/ocs/
@@ -27,7 +27,7 @@ default:
ocPath: ../../
federation:
paths:
- - %paths.base%/../federation_features
+ - "%paths.base%/../federation_features"
contexts:
- FederationContext:
baseUrl: http://localhost:8080/ocs/
@@ -37,7 +37,7 @@ default:
regular_user_password: 123456
capabilities:
paths:
- - %paths.base%/../capabilities_features
+ - "%paths.base%/../capabilities_features"
contexts:
- CapabilitiesContext:
baseUrl: http://localhost:8080/ocs/
@@ -47,7 +47,7 @@ default:
regular_user_password: 123456
sharees:
paths:
- - %paths.base%/../sharees_features
+ - "%paths.base%/../sharees_features"
contexts:
- ShareesContext:
baseUrl: http://localhost:8080/ocs/
@@ -57,7 +57,7 @@ default:
regular_user_password: 123456
setup:
paths:
- - %paths.base%/../setup_features
+ - "%paths.base%/../setup_features"
contexts:
- SetupContext:
baseUrl: http://localhost:8080/ocs/
@@ -67,7 +67,7 @@ default:
regular_user_password: 123456
filesdrop:
paths:
- - %paths.base%/../filesdrop_features
+ - "%paths.base%/../filesdrop_features"
contexts:
- FilesDropContext:
baseUrl: http://localhost:8080
@@ -77,7 +77,7 @@ default:
regular_user_password: 123456
ldap:
paths:
- - %paths.base%/../ldap_features
+ - "%paths.base%/../ldap_features"
contexts:
- LDAPContext:
baseUrl: http://localhost:8080
@@ -87,7 +87,7 @@ default:
regular_user_password: what_for
remoteapi:
paths:
- - %paths.base%/../remoteapi_features
+ - "%paths.base%/../remoteapi_features"
contexts:
- FeatureContext:
baseUrl: http://localhost:8080/ocs/
@@ -100,4 +100,4 @@ default:
extensions:
jarnaiz\JUnitFormatter\JUnitFormatterExtension:
filename: report.xml
- outputDir: %paths.base%/../output/
+ outputDir: "%paths.base%/../output/"