Skip to content

Commit

Permalink
Disable tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
yunosh committed Mar 10, 2014
1 parent 7844882 commit 6dc6105
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
7 changes: 6 additions & 1 deletion nag/test/Nag/TestCase.php
Expand Up @@ -30,6 +30,11 @@
class Nag_TestCase
extends PHPUnit_Framework_TestCase
{
static public function setUpBeforeClass()
{
self::markTestIncomplete();
}

static protected function getInjector()
{
return new Horde_Injector(new Horde_Injector_TopLevel());
Expand Down Expand Up @@ -155,4 +160,4 @@ static private function _createShare($name, $owner)
$GLOBALS['nag_shares']->addShare($share);
return $share;
}
}
}
2 changes: 1 addition & 1 deletion nag/test/Nag/Unit/Driver/Base.php
Expand Up @@ -48,9 +48,9 @@ class Nag_Unit_Driver_Base extends Nag_TestCase

public static function setUpBeforeClass()
{
parent::setUpBeforeClass();
self::$setup = new Horde_Test_Setup();
self::createBasicNagSetup(self::$setup);
parent::setUpBeforeClass();
}

public static function tearDownAfterClass()
Expand Down
2 changes: 1 addition & 1 deletion nag/test/Nag/Unit/Nag/Sql/Pdo/SqliteTest.php
Expand Up @@ -33,8 +33,8 @@ class Nag_Unit_Nag_Sql_Pdo_SqliteTest extends Nag_Unit_Nag_Sql_Base

public static function setUpBeforeClass()
{
parent::setUpBeforeClass();
self::$setup = new Horde_Test_Setup();
self::createSqlPdoSqlite(self::$setup);
parent::setUpBeforeClass();
}
}

0 comments on commit 6dc6105

Please sign in to comment.