xref: /plugin/davcal/vendor/sabre/vobject/tests/VObject/VersionTest.php (revision d1ab5b8c57c43596cd84aa2d50349044128f1828)
1<?php
2
3namespace Sabre\VObject;
4
5class VersionTest extends \PHPUnit_Framework_TestCase {
6
7    function testString() {
8
9        $v = Version::VERSION;
10        $this->assertEquals(-1, version_compare('2.0.0',$v));
11
12    }
13
14}
15