1
0
mirror of synced 2024-12-05 03:06:05 +03:00

small require_once bug fix

This commit is contained in:
doctrine 2006-05-24 08:46:43 +00:00
parent 47e1cf515e
commit 30a00c5060
6 changed files with 10 additions and 10 deletions

View File

@ -3,7 +3,7 @@ class Doctrine_DB extends PDO implements Countable, IteratorAggregate {
/**
* default DSN
*/
const DSN = "mysql://zYne:dc34@localhost/test";
const DSN = "mysql://root:dc34@localhost/test";
/**
* executed queries
*/

View File

@ -1,4 +1,5 @@
<?php
require_once("Relation.class.php");
/**
* Foreign Key
*/

View File

@ -22,5 +22,4 @@ class Doctrine_IndexGenerator {
return $value;
}
}
?>
?>

View File

@ -1,4 +1,5 @@
<?php
require_once("Relation.class.php");
/**
* Local Key
*/

View File

@ -94,10 +94,9 @@ class Sensei extends Doctrine_Access {
public function __construct() {
if(headers_sent())
if(headers_sent())
throw new Sensei_Exception("Headers already sent. Couldn't initialize session.");
$this->session = Doctrine_Manager::getInstance()->getCurrentSession();
$this->table = $this->session->getTable("Sensei_session");
$this->init();
@ -107,6 +106,7 @@ class Sensei extends Doctrine_Access {
if( ! isset($_SESSION))
session_start();
}
/**
* getRecord

View File

@ -1,5 +1,6 @@
<?php
ob_start();
require_once("ConfigurableTestCase.class.php");
require_once("ManagerTestCase.class.php");
require_once("SessionTestCase.class.php");
@ -18,11 +19,12 @@ require_once("SenseiTestCase.class.php");
require_once("QueryTestCase.class.php");
print "<pre>";
error_reporting(E_ALL);
$test = new GroupTest("Doctrine Framework Unit Tests");
//$test->addTestCase(new Sensei_UnitTestCase());
$test->addTestCase(new Doctrine_SessionTestCase());
$test->addTestCase(new Doctrine_TableTestCase());
@ -43,13 +45,10 @@ $test->addTestCase(new Doctrine_ConfigurableTestCase());
$test->addTestCase(new Doctrine_Collection_OffsetTestCase());
$test->addTestCase(new Sensei_UnitTestCase());
$test->addTestCase(new Doctrine_CollectionTestCase());
$test->addTestCase(new Doctrine_QueryTestCase());
//$test->addTestCase(new Doctrine_Cache_FileTestCase());
//$test->addTestCase(new Doctrine_Cache_SqliteTestCase());
@ -59,7 +58,7 @@ $test->addTestCase(new Doctrine_QueryTestCase());
print "<pre>";
$test->run(new HtmlReporter());
$cache = Doctrine_Manager::getInstance()->getCurrentSession()->getCacheHandler();
if(isset($cache)) {