aboutsummaryrefslogtreecommitdiffstats
path: root/build/integration/features/bootstrap/WebDav.php
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@arthur-schiwon.de>2019-06-03 15:24:26 +0200
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2019-06-14 06:23:58 +0200
commit437b33ff63c5c9799bc9147499e5d8e71745c7ec (patch)
tree69a7ca61c94b3c7bc322cb153de986f6c0e3dc08 /build/integration/features/bootstrap/WebDav.php
parent85767660baa8b9e686303b091da8c96b13345f86 (diff)
downloadnextcloud-server-437b33ff63c5c9799bc9147499e5d8e71745c7ec.tar.gz
nextcloud-server-437b33ff63c5c9799bc9147499e5d8e71745c7ec.zip
add LDAP integr. test for receiving share candidates with group limitation
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'build/integration/features/bootstrap/WebDav.php')
-rw-r--r--build/integration/features/bootstrap/WebDav.php23
1 files changed, 0 insertions, 23 deletions
diff --git a/build/integration/features/bootstrap/WebDav.php b/build/integration/features/bootstrap/WebDav.php
index b36cdfaea68..6bc808c3bcb 100644
--- a/build/integration/features/bootstrap/WebDav.php
+++ b/build/integration/features/bootstrap/WebDav.php
@@ -227,29 +227,6 @@ trait WebDav {
}
/**
- * @Then The following headers should be set
- * @param \Behat\Gherkin\Node\TableNode $table
- * @throws \Exception
- */
- public function theFollowingHeadersShouldBeSet(\Behat\Gherkin\Node\TableNode $table) {
- foreach ($table->getTable() as $header) {
- $headerName = $header[0];
- $expectedHeaderValue = $header[1];
- $returnedHeader = $this->response->getHeader($headerName)[0];
- if ($returnedHeader !== $expectedHeaderValue) {
- throw new \Exception(
- sprintf(
- "Expected value '%s' for header '%s', got '%s'",
- $expectedHeaderValue,
- $headerName,
- $returnedHeader
- )
- );
- }
- }
- }
-
- /**
* @Then Downloaded content should start with :start
* @param int $start
* @throws \Exception