]> source.dussan.org Git - nextcloud-server.git/commitdiff
re-enable test in SecurityMiddlewareTest
authorThomas Müller <thomas.mueller@tmit.eu>
Wed, 16 Oct 2013 14:33:56 +0000 (16:33 +0200)
committerThomas Müller <thomas.mueller@tmit.eu>
Wed, 16 Oct 2013 14:33:56 +0000 (16:33 +0200)
tests/lib/appframework/middleware/security/SecurityMiddlewareTest.php

index 3e0f315a4f7e9c13dc49ed92268194871a69331e..4bfd725ffd02d797647e2aa606d242101de86dbe 100644 (file)
@@ -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);
        }