DotsUnited\BundleFu\Tests\BundleTest::testSetCssCacheUrlShouldBeUsedInOutput PHP Method

testSetCssCacheUrlShouldBeUsedInOutput() public method

    public function testSetCssCacheUrlShouldBeUsedInOutput()
    {
        $this->bundle->setCssCacheUrl('http://mycdn.org');
        $this->bundle->start();
        echo '<link href="/css/css_1.css?1000" media="screen" rel="stylesheet" type="text/css">';
        $this->bundle->end();
        $rendered = $this->bundle->render();
        $this->assertRegExp('/<link href="http:\\/\\/mycdn.org[^"]+" rel="stylesheet" type="text\\/css">/', $rendered);
    }