mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
31 lines
1007 B
PHP
31 lines
1007 B
PHP
<?php
|
|
|
|
namespace SilverStripe\CMS\Tests\Controllers;
|
|
|
|
use SilverStripe\CMS\Controllers\LeftAndMainPageIconsExtension;
|
|
use SilverStripe\Dev\SapphireTest;
|
|
|
|
class LeftAndMainPageIconsExtensionTest extends SapphireTest
|
|
{
|
|
protected static $extra_dataobjects = [
|
|
LeftAndMainPageIconsExtensionTest\ModuleIconA::class,
|
|
LeftAndMainPageIconsExtensionTest\ModuleIconB::class,
|
|
LeftAndMainPageIconsExtensionTest\ModuleIconC::class,
|
|
];
|
|
|
|
public function testGenerateIconCSS()
|
|
{
|
|
$extension = new LeftAndMainPageIconsExtension();
|
|
$css = $extension->generatePageIconsCss();
|
|
$this->assertStringNotContainsString('some invalid string', $css);
|
|
$this->assertStringContainsString(
|
|
'tests/php/Controllers/LeftAndMainPageIconsExtensionTest/icon_b.jpg?m=',
|
|
$css
|
|
);
|
|
$this->assertStringContainsString(
|
|
'tests/php/Controllers/LeftAndMainPageIconsExtensionTest/icon_c.jpg?m=',
|
|
$css
|
|
);
|
|
}
|
|
}
|