2007-04-15 07:19:31 +00:00
|
|
|
<?php
|
|
|
|
/* SVN FILE: $Id$ */
|
|
|
|
/**
|
|
|
|
* Short description for file.
|
|
|
|
*
|
|
|
|
* Long description for file
|
|
|
|
*
|
|
|
|
* PHP versions 4 and 5
|
|
|
|
*
|
|
|
|
* CakePHP(tm) Tests <https://trac.cakephp.org/wiki/Developement/TestSuite>
|
2008-01-01 22:18:17 +00:00
|
|
|
* Copyright 2005-2008, Cake Software Foundation, Inc.
|
2007-04-15 07:19:31 +00:00
|
|
|
* 1785 E. Sahara Avenue, Suite 490-204
|
|
|
|
* Las Vegas, Nevada 89104
|
|
|
|
*
|
|
|
|
* Licensed under The Open Group Test Suite License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
|
|
|
* @filesource
|
2008-01-01 22:18:17 +00:00
|
|
|
* @copyright Copyright 2005-2008, Cake Software Foundation, Inc.
|
2007-04-15 07:19:31 +00:00
|
|
|
* @link https://trac.cakephp.org/wiki/Developement/TestSuite CakePHP(tm) Tests
|
|
|
|
* @package cake.tests
|
|
|
|
* @subpackage cake.tests.fixtures
|
|
|
|
* @since CakePHP(tm) v 1.2.0.4667
|
|
|
|
* @version $Revision$
|
|
|
|
* @modifiedby $LastChangedBy$
|
|
|
|
* @lastmodified $Date$
|
|
|
|
* @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* Short description for class.
|
|
|
|
*
|
|
|
|
* @package cake.tests
|
|
|
|
* @subpackage cake.tests.fixtures
|
|
|
|
*/
|
|
|
|
class FeaturedFixture extends CakeTestFixture {
|
|
|
|
var $name = 'Featured';
|
|
|
|
var $fields = array(
|
2008-01-10 08:44:38 +00:00
|
|
|
'id' => array('type' => 'integer', 'key' => 'primary'),
|
2007-04-15 07:19:31 +00:00
|
|
|
'article_featured_id' => array('type' => 'integer', 'null' => false),
|
|
|
|
'category_id' => array('type' => 'integer', 'null' => false),
|
|
|
|
'published_date' => 'datetime',
|
|
|
|
'end_date' => 'datetime',
|
|
|
|
'created' => 'datetime',
|
|
|
|
'updated' => 'datetime'
|
|
|
|
);
|
|
|
|
var $records = array(
|
2008-01-10 07:02:33 +00:00
|
|
|
array('article_featured_id' => 1, 'category_id' => 1, 'published_date' => '2007-03-31 10:39:23', 'end_date' => '2007-05-15 10:39:23', 'created' => '2007-03-18 10:39:23', 'updated' => '2007-03-18 10:41:31'),
|
|
|
|
array('article_featured_id' => 2, 'category_id' => 1, 'published_date' => '2007-03-31 10:39:23', 'end_date' => '2007-05-15 10:39:23', 'created' => '2007-03-18 10:39:23', 'updated' => '2007-03-18 10:41:31'),
|
2007-04-15 07:19:31 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2007-04-01 04:40:18 +00:00
|
|
|
?>
|