Changeset 4567
- Timestamp:
- 06/27/08 00:29:44 (6 months ago)
- Files:
-
- 1 modified
-
branches/0.11/tests/Ticket/1175TestCase.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/0.11/tests/Ticket/1175TestCase.php
r4566 r4567 50 50 $u = $q->from('gUser u')->leftJoin('u.Images i')->leftJoin('u.Files f')->where('u.id = ?',array(1))->fetchOne(); 51 51 $this->assertEqual(count($u->Images),2); 52 echo $q->getSql()."\n";53 54 $images = Doctrine_Query::create()->from('gImage g')->execute(array(),Doctrine::FETCH_ARRAY);55 print_r($images);56 52 } 57 53 }