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
path: root/tests
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2020-12-30 16:46:51 +0300
committerMorris Jobke <hey@morrisjobke.de>2021-01-11 14:41:25 +0300
commitc3cb2882682ef535d6ead7e5800185685cee024d (patch)
tree746c13c1fd884822e7e95b57eb12c28aae7cc347 /tests
parent8b656e321bbf358d8074ce8a3976fac5defdece0 (diff)
Bump scssphp/scssphp from 1.0.3 to 1.4.0
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'tests')
-rw-r--r--tests/lib/Template/SCSSCacherTest.php21
1 files changed, 14 insertions, 7 deletions
diff --git a/tests/lib/Template/SCSSCacherTest.php b/tests/lib/Template/SCSSCacherTest.php
index 4295c800d02..15966521a53 100644
--- a/tests/lib/Template/SCSSCacherTest.php
+++ b/tests/lib/Template/SCSSCacherTest.php
@@ -56,6 +56,8 @@ class SCSSCacherTest extends \Test\TestCase {
/** @var ICache|\PHPUnit\Framework\MockObject\MockObject */
protected $depsCache;
/** @var ICacheFactory|\PHPUnit\Framework\MockObject\MockObject */
+ protected $isCachedCache;
+ /** @var ICacheFactory|\PHPUnit\Framework\MockObject\MockObject */
protected $cacheFactory;
/** @var IconsCacher|\PHPUnit\Framework\MockObject\MockObject */
protected $iconsCacher;
@@ -88,9 +90,15 @@ class SCSSCacherTest extends \Test\TestCase {
}));
$this->cacheFactory = $this->createMock(ICacheFactory::class);
$this->depsCache = $this->createMock(ICache::class);
- $this->cacheFactory->expects($this->at(0))
+ $this->isCachedCache = $this->createMock(ICache::class);
+ $this->cacheFactory
->method('createDistributed')
- ->willReturn($this->depsCache);
+ ->withConsecutive()
+ ->willReturnOnConsecutiveCalls(
+ $this->depsCache,
+ $this->isCachedCache,
+ $this->createMock(ICache::class)
+ );
$this->themingDefaults = $this->createMock(ThemingDefaults::class);
$this->themingDefaults->expects($this->any())->method('getScssVariables')->willReturn([]);
@@ -537,11 +545,10 @@ class SCSSCacherTest extends \Test\TestCase {
->method('getDirectoryListing')
->willReturn([$file]);
- $cache = $this->createMock(ICache::class);
- $this->cacheFactory->expects($this->exactly(2))
- ->method('createDistributed')
- ->willReturn($cache);
- $cache->expects($this->exactly(2))
+ $this->depsCache->expects($this->once())
+ ->method('clear')
+ ->with('');
+ $this->isCachedCache->expects($this->once())
->method('clear')
->with('');
$this->appData->expects($this->once())