WIP add temporary test comparing two implementations of StyleUtils

This commit is contained in:
Anna Dabrowska 2019-02-16 23:58:04 +01:00
parent 845c40c4fa
commit a2adcc9f37
1 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,17 @@
<?php
class styleutils_cssstyleini_test extends DokuWikiTest {
function test_styleini()
{
$tpl = 'dokuwiki';
$util = new \dokuwiki\StyleUtils;
$old = $util->cssStyleiniOld($tpl);
$new = $util->cssStyleini($tpl);
$this->assertEquals($old, $new);
}
}