From: Gunnar Wrobel Date: Mon, 15 Mar 2010 08:18:21 +0000 (+0100) Subject: Activate tests that work now that we allow variable namespaces. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=56ab5f142e3568d8f1c833e298e98cd87e7a468a;p=horde.git Activate tests that work now that we allow variable namespaces. --- diff --git a/framework/Kolab_Storage/test/Horde/Kolab/Storage/NamespaceTest.php b/framework/Kolab_Storage/test/Horde/Kolab/Storage/NamespaceTest.php index 6d8f07a33..a25696109 100644 --- a/framework/Kolab_Storage/test/Horde/Kolab/Storage/NamespaceTest.php +++ b/framework/Kolab_Storage/test/Horde/Kolab/Storage/NamespaceTest.php @@ -40,7 +40,6 @@ class Horde_Kolab_Storage_NamespaceTest extends PHPUnit_Framework_TestCase public function testFolderTitleIsEmptyForPrivateNamespace() { - $this->markTestIncomplete('This expectation currently does not hold as we are not using the namespace handler yet.'); $folder = new Horde_Kolab_Storage_Folder('INBOX'); $folder->restore($this->_storage, $this->_connection, new Horde_Kolab_Storage_Namespace()); $this->assertEquals('', $folder->getTitle()); @@ -55,7 +54,6 @@ class Horde_Kolab_Storage_NamespaceTest extends PHPUnit_Framework_TestCase public function testFolderTitleOfOtherUserDoesNotContainUserPrefixAndOtherUserName() { - $this->markTestIncomplete('This expectation currently does not hold as we are not using the namespace handler yet.'); $folder = new Horde_Kolab_Storage_Folder('user/test/his_folder'); $folder->restore($this->_storage, $this->_connection, new Horde_Kolab_Storage_Namespace()); $this->assertEquals('his_folder', $folder->getTitle()); @@ -88,7 +86,6 @@ class Horde_Kolab_Storage_NamespaceTest extends PHPUnit_Framework_TestCase public function testFolderOwnerIsCurrentUserIfPrefixMatchesPrivateNamespace() { - $this->markTestIncomplete('This expectation currently does not hold as we are not using the namespace handler yet.'); $_SESSION['horde_auth']['userId'] = 'test'; $folder = new Horde_Kolab_Storage_Folder('INBOX'); $folder->restore($this->_storage, $this->_connection, new Horde_Kolab_Storage_Namespace());