Fix some problem with Monocle and add unit test. re #52

This commit is contained in:
Sébastien Lucas 2014-02-13 13:51:01 +01:00
parent 40de093311
commit 5bc09db6fb
3 changed files with 12 additions and 2 deletions

View file

@ -63,4 +63,14 @@ class EpubFsTest extends PHPUnit_Framework_TestCase
}
$this->assertEquals ('epubfs.php?data=20&comp=css~SLASH~page.css', $import);
}
public function testUrlInCss () {
$data = getComponentContent (self::$book, "css~SLASH~main.css", self::$add);
$src = "";
if (preg_match("/url\s*\(\'(.*?)\'\)/", $data, $matches)) {
$src = $matches [1];
}
$this->assertEquals ('epubfs.php?data=20&comp=fonts~SLASH~times.ttf', $src);
}
}