diff --git a/tests/Orm/Component/TestTest.php b/tests/Orm/Component/TestTest.php index 4682ef351..10a0821b5 100644 --- a/tests/Orm/Component/TestTest.php +++ b/tests/Orm/Component/TestTest.php @@ -5,7 +5,7 @@ class Orm_Component_TestTest extends Doctrine_OrmTestCase { protected function setUp() { - $this->loadFixture('forum', 'someusers'); + $this->loadFixture('forum', 'common_users'); } public function testTest() diff --git a/tests/fixtures/dbal/dummy.php b/tests/fixtures/dbal/dummy.php deleted file mode 100644 index 7b937bd18..000000000 --- a/tests/fixtures/dbal/dummy.php +++ /dev/null @@ -1,16 +0,0 @@ - 'dummy', - 'rows' => array( - array( - 'column1' => 'value1', - 'column2' => 'value2', - 'column3' => 'value3' - ), - array( - 'column1' => 'value4', - 'column2' => 'value5', - 'column3' => 'value6' - ) - ) -); \ No newline at end of file diff --git a/tests/fixtures/forum/common_users.php b/tests/fixtures/forum/common_users.php new file mode 100644 index 000000000..6d071f401 --- /dev/null +++ b/tests/fixtures/forum/common_users.php @@ -0,0 +1,14 @@ + 'ForumUser', + 'rows' => array( + array( + 'id' => 1, + 'username' => 'romanb' + ), + array( + 'id' => 2, + 'username' => 'jwage' + ) + ) +); \ No newline at end of file diff --git a/tests/lib/Doctrine_OrmTestCase.php b/tests/lib/Doctrine_OrmTestCase.php index 4e663e2f6..2386de491 100644 --- a/tests/lib/Doctrine_OrmTestCase.php +++ b/tests/lib/Doctrine_OrmTestCase.php @@ -15,8 +15,8 @@ class Doctrine_OrmTestCase extends Doctrine_TestCase if ( ! isset(self::$_fixtures[$uniqueName])) { // load fixture file - $fixtureFile = 'fixtures' . DIRECTORY_SEPARATOR . 'orm' . DIRECTORY_SEPARATOR - . $package . DIRECTORY_SEPARATOR . $name . '.php'; + $fixtureFile = 'fixtures' . DIRECTORY_SEPARATOR . $package . DIRECTORY_SEPARATOR + . $name . '.php'; require $fixtureFile; self::$_fixtures[$uniqueName] = $fixture;