Activate tests that work now that we allow variable namespaces.
authorGunnar Wrobel <p@rdus.de>
Mon, 15 Mar 2010 08:18:21 +0000 (09:18 +0100)
committerGunnar Wrobel <wrobel@temple.(none)>
Mon, 15 Mar 2010 10:33:24 +0000 (11:33 +0100)
framework/Kolab_Storage/test/Horde/Kolab/Storage/NamespaceTest.php

index 6d8f07a..a256961 100644 (file)
@@ -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());