1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-29 17:19:56 +02:00

Three dependencies updated and moved to vendor directory:

PHPMailer (upgraded to v6 - more testing required)
JsShink
Mysqldump-php
This commit is contained in:
Cameron
2020-02-29 11:56:05 -08:00
parent a5193f2850
commit 1925ce5264
89 changed files with 7112 additions and 2371 deletions

View File

@@ -863,13 +863,18 @@ class e107Test extends \Codeception\Test\Unit
$res = null;
$this->assertTrue($res);
}
*/
public function testMinify()
{
$res = null;
$this->assertTrue($res);
}
$text = "something ; other or ; else";
$expected = "something;other or;else";
$result = e107::minify($text);
$this->assertEquals($expected,$result);
}
/*
public function testWysiwyg()
{
$res = null;