diff options
author | Teamjungla{CODE} <junglacode@gmail.com> | 2016-08-20 13:47:12 -0500 |
---|---|---|
committer | Teamjungla{CODE} <junglacode@gmail.com> | 2016-08-20 13:47:12 -0500 |
commit | fe8e9cdcfe3afc1475c7e7f4392d2b2cc601a12b (patch) | |
tree | 001403874e9e3716de7c6d51a9f536e9b3c3be5e /tests/integration/UserTest.php | |
parent | b1e795fc5b45369f7b9b565b1e106d2673361977 (diff) | |
parent | 98efcf21e355ed6ac3827058b99df86ca67c75bb (diff) |
Merge branch 'stable' of https://github.com/kanboard/kanboard
Diffstat (limited to 'tests/integration/UserTest.php')
-rw-r--r-- | tests/integration/UserTest.php | 18 |
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)); - } -} |