Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2013-10-16 18:33:56 +0400
committerThomas Müller <thomas.mueller@tmit.eu>2013-10-16 18:33:56 +0400
commitcdaa1db0d19f0dac33e4d8831df6a41a866dd465 (patch)
tree6346968374bfca9730f326136d134696271054ed /tests
parentfdeef5e874ae7a8e4a23a737e5a1e948804d768a (diff)
re-enable test in SecurityMiddlewareTest
Diffstat (limited to 'tests')
-rw-r--r--tests/lib/appframework/middleware/security/SecurityMiddlewareTest.php5
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);
}