blob: a4e093e35d18520a5c7044f672c329cb1e221b0f (
plain) (
tree)
|
|
<?php
namespace Sabre\CalDAV;
class VersionTest extends \PHPUnit_Framework_TestCase {
function testString() {
$v = Version::VERSION;
$this->assertEquals(-1, version_compare('1.0.0',$v));
$s = Version::STABILITY;
$this->assertTrue($s == 'alpha' || $s == 'beta' || $s =='stable');
}
}
|