Skip to content

Commit

Permalink
php parse error
Browse files Browse the repository at this point in the history
  • Loading branch information
nadar committed May 11, 2022
1 parent 457f78f commit 1296192
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions tests/admin/ngrest/plugins/SortableTest.php
@@ -0,0 +1,21 @@
<?php

namespace admintests\admin\ngrest\plugins;

use admintests\AdminTestCase;
use luya\admin\ngrest\plugins\Sortable;

class SortableTest extends AdminTestCase
{
public function testSortableRenderList()
{
$renderList = new Sortable([
'alias' => 'slug',
'name' => 'slug',
'i18n' => true,
]);

$html = $renderList->renderList(1,'foobar');
$this->assertNotEmpty($html);
}
}

0 comments on commit 1296192

Please sign in to comment.