]> git.mxchange.org Git - friendica-addons.git/blobdiff - dav/SabreDAV/tests/Sabre/VObject/VersionTest.php
Second part of refactoring; should be runnable again, yet not thoroughly tested
[friendica-addons.git] / dav / SabreDAV / tests / Sabre / VObject / VersionTest.php
diff --git a/dav/SabreDAV/tests/Sabre/VObject/VersionTest.php b/dav/SabreDAV/tests/Sabre/VObject/VersionTest.php
deleted file mode 100644 (file)
index ea2a4b2..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-<?php
-
-class Sabre_VObject_VersionTest extends PHPUnit_Framework_TestCase {
-
-    function testString() {
-
-        $v = Sabre_VObject_Version::VERSION;
-        $this->assertEquals(-1, version_compare('0.9.0',$v));
-
-        $s = Sabre_VObject_Version::STABILITY;
-        $this->assertTrue($s == 'alpha' || $s == 'beta' || $s =='stable');
-
-    }
-
-}