Exemplo n.º 1
0
 public function testCssEmbedMhtml()
 {
     $asset = new FileAsset(__DIR__ . '/fixtures/cssembed/test.css');
     $asset->load();
     $filter = new CssEmbedFilter($_SERVER['CSSEMBED_JAR']);
     $filter->setMhtml(true);
     $filter->setMhtmlRoot('/test');
     $filter->filterDump($asset);
     $this->assertContains('url(mhtml:/test/!', $asset->getContent());
 }