Fix tests
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
This commit is contained in:
parent
b87e5a0f2e
commit
047fb6d2c5
|
@ -85,6 +85,7 @@ class SCSSCacherTest extends \Test\TestCase {
|
|||
|
||||
$this->appData->expects($this->once())->method('getFolder')->with('core')->willThrowException(new NotFoundException());
|
||||
$this->appData->expects($this->once())->method('newFolder')->with('core')->willReturn($folder);
|
||||
$this->appData->method('getDirectoryListing')->willReturn([]);
|
||||
|
||||
$fileDeps = $this->createMock(ISimpleFile::class);
|
||||
$gzfile = $this->createMock(ISimpleFile::class);
|
||||
|
@ -118,6 +119,7 @@ class SCSSCacherTest extends \Test\TestCase {
|
|||
public function testProcessUncachedFile() {
|
||||
$folder = $this->createMock(ISimpleFolder::class);
|
||||
$this->appData->expects($this->once())->method('getFolder')->with('core')->willReturn($folder);
|
||||
$this->appData->method('getDirectoryListing')->willReturn([]);
|
||||
$file = $this->createMock(ISimpleFile::class);
|
||||
$file->expects($this->any())->method('getSize')->willReturn(1);
|
||||
$fileDeps = $this->createMock(ISimpleFile::class);
|
||||
|
@ -148,6 +150,7 @@ class SCSSCacherTest extends \Test\TestCase {
|
|||
public function testProcessCachedFile() {
|
||||
$folder = $this->createMock(ISimpleFolder::class);
|
||||
$this->appData->expects($this->once())->method('getFolder')->with('core')->willReturn($folder);
|
||||
$this->appData->method('getDirectoryListing')->willReturn([]);
|
||||
$file = $this->createMock(ISimpleFile::class);
|
||||
$fileDeps = $this->createMock(ISimpleFile::class);
|
||||
$fileDeps->expects($this->any())->method('getSize')->willReturn(1);
|
||||
|
@ -178,6 +181,7 @@ class SCSSCacherTest extends \Test\TestCase {
|
|||
->willReturn($folder);
|
||||
$folder->method('getName')
|
||||
->willReturn('core');
|
||||
$this->appData->method('getDirectoryListing')->willReturn([]);
|
||||
|
||||
$file = $this->createMock(ISimpleFile::class);
|
||||
|
||||
|
|
Loading…
Reference in New Issue