Remove page template

This commit is contained in:
Ribas160 2025-07-02 17:38:13 +03:00
parent 0178bbc075
commit 3d3d80c60b
7 changed files with 6 additions and 810 deletions

View file

@ -154,7 +154,7 @@ class ViewTest extends TestCase
public function testIsBootstrapTemplate()
{
$bootstrapTemplate = 'bootstrap-dark';
$nonBootstrapTemplate = 'page';
$nonBootstrapTemplate = 'bootstrap5';
$this->assertTrue(View::isBootstrapTemplate($bootstrapTemplate), 'Is bootstrap template');
$this->assertFalse(View::isBootstrapTemplate($nonBootstrapTemplate), 'Is not bootstrap template');
}