Пример #1
0
    public function testDoLoad()
    {
        file_put_contents("{$this->dir}/test.php", <<<DATA
<?php return array(
    'imports' => array(
        array('resource' => 'import.php')
    ),
    'root' => array(
        'number' => 123,
        'imported' => '%imported.value%'
    )
);
DATA
);
        file_put_contents("{$this->dir}/import.php", <<<DATA
<?php return array(
    'imported' => array(
        'value' => 'imported value'
    )
);
DATA
);
        $this->assertSame(array('imported' => array('value' => 'imported value'), 'imports' => array(array('resource' => 'import.php')), 'root' => array('number' => 123, 'imported' => 'imported value')), $this->loader->load('test.php'));
    }