mirror of
https://github.com/BookStackApp/BookStack.git
synced 2026-02-25 03:10:24 +03:00
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
|
|
}
|
|
}
|