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
|
||
|
}
|
||
|
}
|