Changeset 4901
- Timestamp:
- 09/09/08 18:14:51 (4 months ago)
- Files:
-
- 1 modified
-
branches/1.0/tests/Ticket/1380TestCase.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.0/tests/Ticket/1380TestCase.php
r4898 r4901 54 54 ->limit(1); 55 55 $user = $q->fetchOne(); 56 $this->assertTrue(isset($user['test_calculated_column'])); 57 $this->assertEqual($user['Album'][0]['test_calculated_column'], $user['test_calculated_column']); 56 try { 57 $this->assertTrue(isset($user['test_calculated_column'])); 58 $this->assertEqual($user['Album'][0]['test_calculated_column'], $user['test_calculated_column']); 59 $this->pass(); 60 } catch (Exception $e) { 61 $this->fail($e->getMessage()); 62 } 58 63 } 59 64 }