diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2013-10-16 16:33:56 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2013-10-16 16:33:56 +0200 |
commit | cdaa1db0d19f0dac33e4d8831df6a41a866dd465 (patch) | |
tree | 6346968374bfca9730f326136d134696271054ed /tests | |
parent | fdeef5e874ae7a8e4a23a737e5a1e948804d768a (diff) | |
download | nextcloud-server-cdaa1db0d19f0dac33e4d8831df6a41a866dd465.tar.gz nextcloud-server-cdaa1db0d19f0dac33e4d8831df6a41a866dd465.zip |
re-enable test in SecurityMiddlewareTest
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/appframework/middleware/security/SecurityMiddlewareTest.php | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/lib/appframework/middleware/security/SecurityMiddlewareTest.php b/tests/lib/appframework/middleware/security/SecurityMiddlewareTest.php index 3e0f315a4f7..4bfd725ffd0 100644 --- a/tests/lib/appframework/middleware/security/SecurityMiddlewareTest.php +++ b/tests/lib/appframework/middleware/security/SecurityMiddlewareTest.php @@ -115,7 +115,6 @@ class SecurityMiddlewareTest extends \PHPUnit_Framework_TestCase { * @NoAdminRequired */ public function testAjaxNotAdminCheck() { - $this->markTestSkipped("Logged in state currently not available in API"); $this->ajaxExceptionStatus( 'testAjaxNotAdminCheck', 'isAdminUser', @@ -261,7 +260,6 @@ class SecurityMiddlewareTest extends \PHPUnit_Framework_TestCase { * @NoAdminRequired */ public function testLoggedInCheck(){ - $this->markTestSkipped("Logged in state currently not available in API"); $this->securityCheck('testLoggedInCheck', 'isLoggedIn'); } @@ -271,7 +269,6 @@ class SecurityMiddlewareTest extends \PHPUnit_Framework_TestCase { * @NoAdminRequired */ public function testFailLoggedInCheck(){ - $this->markTestSkipped("Logged in state currently not available in API"); $this->securityCheck('testFailLoggedInCheck', 'isLoggedIn', true); } @@ -280,7 +277,6 @@ class SecurityMiddlewareTest extends \PHPUnit_Framework_TestCase { * @NoCSRFRequired */ public function testIsAdminCheck(){ - $this->markTestSkipped("Logged in state currently not available in API"); $this->securityCheck('testIsAdminCheck', 'isAdminUser'); } @@ -289,7 +285,6 @@ class SecurityMiddlewareTest extends \PHPUnit_Framework_TestCase { * @NoCSRFRequired */ public function testFailIsAdminCheck(){ - $this->markTestSkipped("Logged in state currently not available in API"); $this->securityCheck('testFailIsAdminCheck', 'isAdminUser', true); } |