1
0
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:
Dan Brown
2024-11-16 13:57:41 +00:00
parent b7476a9e7f
commit 7681e32dca
5 changed files with 195 additions and 18 deletions

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