summaryrefslogtreecommitdiff
path: root/tests/integration/UserTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/integration/UserTest.php')
-rw-r--r--tests/integration/UserTest.php18
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/integration/UserTest.php b/tests/integration/UserTest.php
deleted file mode 100644
index 10da051c..00000000
--- a/tests/integration/UserTest.php
+++ /dev/null
@@ -1,18 +0,0 @@
-<?php
-
-require_once __DIR__.'/Base.php';
-
-class UserTest extends Base
-{
- public function testDisableUser()
- {
- $this->assertEquals(2, $this->app->createUser(array('username' => 'someone', 'password' => 'test123')));
- $this->assertTrue($this->app->isActiveUser(2));
-
- $this->assertTrue($this->app->disableUser(2));
- $this->assertFalse($this->app->isActiveUser(2));
-
- $this->assertTrue($this->app->enableUser(2));
- $this->assertTrue($this->app->isActiveUser(2));
- }
-}