1
0
Fork 0
get-installer-bootstrap/tests/AdminCssTest.php

16 lines
362 B
PHP
Raw Normal View History

<?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);
}
}