mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-08-09 10:22:51 +03:00
ZIP Imports: Added high level import run tests
This commit is contained in:
21
tests/Exports/ZipImportRunnerTest.php
Normal file
21
tests/Exports/ZipImportRunnerTest.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Tests\Exports;
|
||||
|
||||
use BookStack\Exports\ZipExports\ZipImportRunner;
|
||||
use Tests\TestCase;
|
||||
|
||||
class ZipImportRunnerTest extends TestCase
|
||||
{
|
||||
protected ZipImportRunner $runner;
|
||||
|
||||
protected function setUp(): void
|
||||
{
|
||||
parent::setUp();
|
||||
$this->runner = app()->make(ZipImportRunner::class);
|
||||
}
|
||||
|
||||
// TODO - Test full book import
|
||||
// TODO - Test full chapter import
|
||||
// TODO - Test full page import
|
||||
}
|
Reference in New Issue
Block a user