luyatests\core\console\controllers\ModuleControllerTest::testRenderAdmin PHP Method

testRenderAdmin() public method

public testRenderAdmin ( )
    public function testRenderAdmin()
    {
        $ctrl = new ModuleController('module', Yii::$app);
        $content = $ctrl->renderAdmin([], 'foo', 'app\\modules');
        $tpl = <<<'EOT'
<?php

namespace app\modules\admin;

/**
 * Foo Admin Module.
 *
 * File has been created with `module/create` command on LUYA version 1.0.0-dev. 
 */
class Module extends \luya\admin\base\Module
{

}
EOT;
        $this->assertSame($tpl, $content);
    }