-<?php namespace Tests\Permissions;
+<?php
-use BookStack\Entities\Book;
-use BookStack\Entities\Chapter;
+namespace Tests\Permissions;
+
+use BookStack\Entities\Models\Book;
+use BookStack\Entities\Models\Chapter;
use Illuminate\Support\Str;
use Tests\TestCase;
class ExportPermissionsTest extends TestCase
{
-
public function test_page_content_without_view_access_hidden_on_chapter_export()
{
$chapter = Chapter::query()->first();
$resp->assertDontSee($pageContent);
}
}
-
-}
\ No newline at end of file
+}