LogableCommentFixture.php 441 B

123456789101112131415
  1. <?php
  2. class LogableCommentFixture extends CakeTestFixture {
  3. public $fields = array(
  4. 'id' => array('type' => 'integer', 'key' => 'primary'),
  5. 'content' => array('type' => 'string', 'length' => 255, 'null' => false),
  6. );
  7. public $records = array(
  8. array('id' => 1, 'content' => 'I like it'),
  9. array('id' => 2, 'content' => 'I don\'t'),
  10. array('id' => 3, 'content' => 'I LOVE it!'),
  11. array('id' => 4, 'content' => 'I hate it'),
  12. );
  13. }