Merge pull request #2811 from owncloud/app-version-check

added yet another test for the verion compare check due to mail
remotes/origin/stable6
Thomas Müller 12 years ago
commit be47f77060
  1. 8
      tests/lib/app.php

@ -64,6 +64,14 @@ class Test_App extends PHPUnit_Framework_TestCase {
}
public function testIsAppVersionCompatibleShouldWorkForPreAlpha(){
$oc = array(5, 0, 3);
$app = '4.93';
$this->assertTrue(OC_App::isAppVersionCompatible($oc, $app));
}
public function testIsAppVersionCompatibleShouldFailOneVersionNumbers(){
$oc = array(4, 3, 1);
$app = '5';

Loading…
Cancel
Save