mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-01-22 08:22:01 +08:00
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
16 lines
239 B
PHP
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
|
|
}
|
|
}
|