2009-07-24 21:18:37 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2009-11-06 18:35:14 +11:00
|
|
|
* Counter Cache Test Fixtures
|
2009-07-24 21:18:37 +02:00
|
|
|
*
|
2010-10-03 12:31:21 -04:00
|
|
|
* PHP 5
|
2009-07-24 21:18:37 +02:00
|
|
|
*
|
2012-04-26 19:49:18 -07:00
|
|
|
* CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html>
|
2013-02-08 20:59:49 +09:00
|
|
|
* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2009-07-24 21:18:37 +02:00
|
|
|
*
|
2010-10-03 12:31:21 -04:00
|
|
|
* Licensed under The MIT License
|
2013-02-08 21:22:51 +09:00
|
|
|
* For full copyright and license information, please see the LICENSE.txt
|
2010-10-03 12:31:21 -04:00
|
|
|
* Redistributions of files must retain the above copyright notice
|
2009-07-24 21:18:37 +02:00
|
|
|
*
|
2013-02-08 20:59:49 +09:00
|
|
|
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2012-04-26 19:49:18 -07:00
|
|
|
* @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests
|
2011-07-26 01:46:14 -04:30
|
|
|
* @package Cake.Test.Fixture
|
2009-07-24 21:18:37 +02:00
|
|
|
* @since CakePHP(tm) v 1.2.0.4667
|
2010-10-03 12:27:27 -04:00
|
|
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
2009-07-24 21:18:37 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Short description for class.
|
|
|
|
*
|
2011-07-26 01:46:14 -04:30
|
|
|
* @package Cake.Test.Fixture
|
2009-07-24 21:18:37 +02:00
|
|
|
*/
|
|
|
|
class CounterCachePostFixture extends CakeTestFixture {
|
|
|
|
|
2010-04-04 17:14:00 +10:00
|
|
|
public $name = 'CounterCachePost';
|
2009-07-24 21:18:37 +02:00
|
|
|
|
2010-04-04 17:14:00 +10:00
|
|
|
public $fields = array(
|
2009-07-24 21:18:37 +02:00
|
|
|
'id' => array('type' => 'integer', 'key' => 'primary'),
|
2011-09-03 18:37:29 +01:00
|
|
|
'title' => array('type' => 'string', 'length' => 255),
|
2009-07-24 21:18:37 +02:00
|
|
|
'user_id' => array('type' => 'integer', 'null' => true),
|
2011-09-03 18:37:29 +01:00
|
|
|
'published' => array('type' => 'boolean', 'null' => false, 'default' => 0)
|
2009-07-24 21:18:37 +02:00
|
|
|
);
|
|
|
|
|
2011-12-15 22:52:07 -08:00
|
|
|
public $records = array(
|
2012-11-21 15:39:03 +01:00
|
|
|
array('id' => 1, 'title' => 'Rock and Roll', 'user_id' => 66, 'published' => false),
|
|
|
|
array('id' => 2, 'title' => 'Music', 'user_id' => 66, 'published' => true),
|
|
|
|
array('id' => 3, 'title' => 'Food', 'user_id' => 301, 'published' => true),
|
2011-12-15 22:52:07 -08:00
|
|
|
);
|
2009-07-24 21:18:37 +02:00
|
|
|
}
|