BookStack/tests/Exports/ZipExportTest.php
Dan Brown 21ccfa97dd
Some checks failed
analyse-php / build (push) Has been cancelled
lint-php / build (push) Has been cancelled
test-migrations / build (8.1) (push) Has been cancelled
test-migrations / build (8.2) (push) Has been cancelled
test-migrations / build (8.3) (push) Has been cancelled
test-php / build (8.1) (push) Has been cancelled
test-php / build (8.2) (push) Has been cancelled
test-php / build (8.3) (push) Has been cancelled
ZIP Export: Expanded page & added base attachment handling
2024-10-19 15:41:07 +01:00

16 lines
239 B
PHP

<?php
namespace Tests\Exports;
use BookStack\Entities\Models\Book;
use Tests\TestCase;
class ZipExportTest extends TestCase
{
public function test_page_export()
{
$page = $this->entities->page();
// TODO
}
}