diff options
author | Julius Härtl <jus@bitgrid.net> | 2018-10-25 11:57:27 +0200 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2018-10-25 12:16:10 +0200 |
commit | d21ded67a70672cfa56a48051fa752b431118604 (patch) | |
tree | 5f29256f45dbb761f5cc1ea80dd7d9802114196b /tests/lib/Template | |
parent | 0b2ef7e60873fbb2036a85a934bf1af23ebb5bc9 (diff) | |
download | nextcloud-server-d21ded67a70672cfa56a48051fa752b431118604.tar.gz nextcloud-server-d21ded67a70672cfa56a48051fa752b431118604.zip |
Keep list of icons in a separate file for use in the accessibility app
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'tests/lib/Template')
-rw-r--r-- | tests/lib/Template/IconsCacherTest.php | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/lib/Template/IconsCacherTest.php b/tests/lib/Template/IconsCacherTest.php index d6a9908989c..33735e3a45e 100644 --- a/tests/lib/Template/IconsCacherTest.php +++ b/tests/lib/Template/IconsCacherTest.php @@ -104,7 +104,7 @@ class IconsCacherTest extends \Test\TestCase { public function testSetIconsFromValidCss() { $css = " icon.test { - --icon-test: url('/svg/core/actions/add/000?v=1'); + --icon-test: url('/index.php/svg/core/actions/add/000?v=1'); background-image: var(--icon-test); } "; @@ -116,10 +116,10 @@ class IconsCacherTest extends \Test\TestCase { "; $iconsFile = $this->createMock(ISimpleFile::class); - $this->folder->expects($this->once()) + $this->folder->expects($this->exactly(2)) ->method('getFile') ->willReturn($iconsFile); - + $actual = $this->iconsCacher->setIconsCss($css); $this->assertEquals($expected, $actual); } @@ -127,7 +127,7 @@ class IconsCacherTest extends \Test\TestCase { public function testSetIconsFromValidCssMultipleTimes() { $css = " icon.test { - --icon-test: url('/svg/core/actions/add/000?v=1'); + --icon-test: url('/index.php/svg/core/actions/add/000?v=1'); background-image: var(--icon-test); } "; @@ -139,14 +139,14 @@ class IconsCacherTest extends \Test\TestCase { "; $iconsFile = $this->createMock(ISimpleFile::class); - $this->folder->expects($this->exactly(3)) + $this->folder->expects($this->exactly(6)) ->method('getFile') ->willReturn($iconsFile); - + $actual = $this->iconsCacher->setIconsCss($css); $actual = $this->iconsCacher->setIconsCss($actual); $actual = $this->iconsCacher->setIconsCss($actual); $this->assertEquals($expected, $actual); } -}
\ No newline at end of file +} |