test addition

This commit is contained in:
yuri
2015-07-09 11:33:36 +03:00
parent 71a5e1ab22
commit b2b0ed82e5
@@ -110,6 +110,11 @@ class HtmlizerTest extends \PHPUnit_Framework_TestCase
$html = $this->htmlizer->render($entity, $template);
$this->assertEquals('10,000.5', $html);
$template = "{{int}}";
$entity->set('int', 3000);
$html = $this->htmlizer->render($entity, $template);
$this->assertEquals('3,000', $html);
}
}