Bolt\Tests\Configuration\ResourceManagerTest::testSetThemePath PHP Method

testSetThemePath() public method

public testSetThemePath ( )
    public function testSetThemePath()
    {
        $config = new Standard(PHPUNIT_WEBROOT);
        $theme = ['theme' => 'test'];
        $config->setThemePath($theme);
        $this->assertEquals(Path::fromString(PHPUNIT_WEBROOT . '/theme/test'), $config->getPath('theme'));
        $theme = ['theme' => 'test', 'theme_path' => '/testpath'];
        $config->setThemePath($theme);
        $this->assertEquals(Path::fromString(PHPUNIT_WEBROOT . '/testpath/test'), $config->getPath('theme'));
    }