diff options
author | Daniel Kesselberg <mail@danielkesselberg.de> | 2018-08-12 17:14:08 +0200 |
---|---|---|
committer | Daniel Kesselberg <mail@danielkesselberg.de> | 2018-08-12 17:14:08 +0200 |
commit | bfa49410a2d46e095ec63fe52f8033b488cd8259 (patch) | |
tree | 0792842ac18be7986e1ee1b36a57e645db5104e4 /tests | |
parent | 4cdad9b69f71f185d8f7e857a7e99f5fae9c42e7 (diff) | |
download | nextcloud-server-bfa49410a2d46e095ec63fe52f8033b488cd8259.tar.gz nextcloud-server-bfa49410a2d46e095ec63fe52f8033b488cd8259.zip |
Drop support for xcache
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/Memcache/XCacheTest.php | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/tests/lib/Memcache/XCacheTest.php b/tests/lib/Memcache/XCacheTest.php deleted file mode 100644 index af720115d01..00000000000 --- a/tests/lib/Memcache/XCacheTest.php +++ /dev/null @@ -1,22 +0,0 @@ -<?php - -/** - * Copyright (c) 2013 Robin Appelman <icewind@owncloud.com> - * This file is licensed under the Affero General Public License version 3 or - * later. - * See the COPYING-README file. - */ - -namespace Test\Memcache; - -class XCacheTest extends Cache { - protected function setUp() { - parent::setUp(); - - if (!\OC\Memcache\XCache::isAvailable()) { - $this->markTestSkipped('The xcache extension is not available.'); - return; - } - $this->instance = new \OC\Memcache\XCache($this->getUniqueID()); - } -} |