10 lines
400 B
PHP
10 lines
400 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
test('packing guidelines exclude docs and allow later manual icon', function (): void {
|
|
$packing = file_get_contents(dirname(__DIR__, 2) . '/PACKING.md') ?: '';
|
|
assert_contains('docs/dokumentacja.html', $packing);
|
|
assert_contains('must not contain `docs/`', $packing);
|
|
assert_contains('may be added later at `src/images/user_icon.svg`', $packing);
|
|
});
|