Fix some problem with Monocle and add unit test. re #52
This commit is contained in:
parent
40de093311
commit
5bc09db6fb
3 changed files with 12 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue