File: VersionTest.php

package info (click to toggle)
php-sabre-vobject 4.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 1,764 kB
  • sloc: php: 24,844; makefile: 40; xml: 22
file content (14 lines) | stat: -rw-r--r-- 223 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

namespace Sabre\VObject;

class VersionTest extends \PHPUnit_Framework_TestCase {

    function testString() {

        $v = Version::VERSION;
        $this->assertEquals(-1, version_compare('2.0.0', $v));

    }

}