summaryrefslogtreecommitdiffstats
path: root/tests/lib/user
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2014-11-05 15:45:58 +0100
committerRobin Appelman <icewind@owncloud.com>2014-11-05 15:45:58 +0100
commit1eefc21329e1256989fc50a5fe7597989324e47f (patch)
tree9cfcf96f01686c51c3d2337384cff7c6a09bfea4 /tests/lib/user
parentf0d6a47a67b87c544d44ecacf2ba2e9a36659053 (diff)
downloadnextcloud-server-1eefc21329e1256989fc50a5fe7597989324e47f.tar.gz
nextcloud-server-1eefc21329e1256989fc50a5fe7597989324e47f.zip
Remove confusingly names \OC\User\Manager::delete and fix the automatic cache cleanup instead
Diffstat (limited to 'tests/lib/user')
-rw-r--r--tests/lib/user/manager.php13
1 files changed, 12 insertions, 1 deletions
diff --git a/tests/lib/user/manager.php b/tests/lib/user/manager.php
index fd0931af7e4..15b28e61bd5 100644
--- a/tests/lib/user/manager.php
+++ b/tests/lib/user/manager.php
@@ -416,6 +416,17 @@ class Manager extends \PHPUnit_Framework_TestCase {
$users = array_shift($result);
//users from backends shall be summed up
- $this->assertEquals(7+16, $users);
+ $this->assertEquals(7 + 16, $users);
+ }
+
+ public function testDeleteUser() {
+ $manager = new \OC\User\Manager();
+ $backend = new \OC_User_Dummy();
+
+ $backend->createUser('foo', 'bar');
+ $manager->registerBackend($backend);
+ $this->assertTrue($manager->userExists('foo'));
+ $manager->get('foo')->delete();
+ $this->assertFalse($manager->userExists('foo'));
}
}