16 lines
362 B
PHP
16 lines
362 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Tests;
|
||
|
|
|
||
|
|
use PHPUnit\Framework\TestCase;
|
||
|
|
|
||
|
|
final class AdminCssTest extends TestCase
|
||
|
|
{
|
||
|
|
public function testAdminCardDefinesInnerPadding(): void
|
||
|
|
{
|
||
|
|
$css = (string) file_get_contents(dirname(__DIR__).'/public/admin.css');
|
||
|
|
|
||
|
|
self::assertMatchesRegularExpression('/\.admin-card\s*\{[^}]*\bpadding:\s*24px;/s', $css);
|
||
|
|
}
|
||
|
|
}
|