]> git.mxchange.org Git - friendica-addons.git/blob - dav/SabreDAV/tests/Sabre/VObject/VersionTest.php
Move friendica-specific parts into an own subdirectory
[friendica-addons.git] / dav / SabreDAV / tests / Sabre / VObject / VersionTest.php
1 <?php
2
3 class Sabre_VObject_VersionTest extends PHPUnit_Framework_TestCase {
4
5     function testString() {
6
7         $v = Sabre_VObject_Version::VERSION;
8         $this->assertEquals(-1, version_compare('0.9.0',$v));
9
10         $s = Sabre_VObject_Version::STABILITY;
11         $this->assertTrue($s == 'alpha' || $s == 'beta' || $s =='stable');
12
13     }
14
15 }