1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-15 02:57:15 +02:00

Theme manager now using e107::isCompatible() method.

This commit is contained in:
Cameron
2021-01-23 15:48:09 -08:00
parent b457c8168e
commit 8b73cfee5c
3 changed files with 9 additions and 21 deletions

View File

@@ -1631,6 +1631,8 @@ class e107Test extends \Codeception\Test\Unit
// version => expected
$tests = array (
'1' => false, // assumed incompatible.
'1.2.3' => false,
'1.2' => false,
'2' => true, // assumed to work with all versions from 2+
'2.0' => true, // assumed to work with all versions from 2+
'2.3' => true, // assumed to work with all versions from 2.3 onward.
@@ -1642,7 +1644,6 @@ class e107Test extends \Codeception\Test\Unit
'2.9' => false,
'2.9.2' => false,
'3' => false,
);
$e107 = $this->e107;