diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2018-04-13 16:43:02 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2018-08-09 23:45:12 +0200 |
commit | 0f6d98eed2e45623514ed7445aedf599a9d8d185 (patch) | |
tree | 7edb6a34443d2c6dc3b62fc038f46a2d1bd61145 /build/integration/features | |
parent | f1cd4bc0c28a16d1e4f879482555313112d68cb5 (diff) | |
download | nextcloud-server-0f6d98eed2e45623514ed7445aedf599a9d8d185.tar.gz nextcloud-server-0f6d98eed2e45623514ed7445aedf599a9d8d185.zip |
convert connection tests
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'build/integration/features')
-rw-r--r-- | build/integration/features/bootstrap/BasicStructure.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/build/integration/features/bootstrap/BasicStructure.php b/build/integration/features/bootstrap/BasicStructure.php index 32e02bad2a3..f6c93aa5174 100644 --- a/build/integration/features/bootstrap/BasicStructure.php +++ b/build/integration/features/bootstrap/BasicStructure.php @@ -497,4 +497,11 @@ trait BasicStructure { $file->isDir() ? rmdir($file) : unlink($file); } } + + /** + * @Given /^cookies are reset$/ + */ + public function cookiesAreReset() { + $this->cookieJar = new CookieJar(); + } } |