mirror of
https://github.com/nextcloud/server.git
synced 2026-04-22 23:03:00 -04:00
added yet another test for the verion compare check due to mail
This commit is contained in:
parent
5bb248efd6
commit
11dfc7d141
1 changed files with 8 additions and 0 deletions
|
|
@ -64,6 +64,14 @@ class Test_App extends PHPUnit_Framework_TestCase {
|
|||
}
|
||||
|
||||
|
||||
public function testIsAppVersionCompatibleShouldWorkForPreAlpha(){
|
||||
$oc = array(5, 0, 0);
|
||||
$app = '4.93';
|
||||
|
||||
$this->assertTrue(OC_App::isAppVersionCompatible($oc, $app));
|
||||
}
|
||||
|
||||
|
||||
public function testIsAppVersionCompatibleShouldFailOneVersionNumbers(){
|
||||
$oc = array(4, 3, 1);
|
||||
$app = '5';
|
||||
|
|
|
|||
Loading…
Reference in a new issue