mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-18 02:26:17 +00:00
Added Node / Dependency Fixture
git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@6881 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
parent
9d9d69d194
commit
fa0325b68f
2 changed files with 100 additions and 0 deletions
49
cake/tests/fixtures/dependency_fixture.php
vendored
Normal file
49
cake/tests/fixtures/dependency_fixture.php
vendored
Normal file
|
@ -0,0 +1,49 @@
|
|||
<?php
|
||||
/* SVN FILE: $Id$ */
|
||||
/**
|
||||
* Short description for file.
|
||||
*
|
||||
* Long description for file
|
||||
*
|
||||
* PHP versions 4 and 5
|
||||
*
|
||||
* CakePHP(tm) : Rapid Development Framework <http://www.cakephp.org/>
|
||||
* Copyright 2005-2008, Cake Software Foundation, Inc.
|
||||
* 1785 E. Sahara Avenue, Suite 490-204
|
||||
* Las Vegas, Nevada 89104
|
||||
*
|
||||
* Licensed under The MIT License
|
||||
* Redistributions of files must retain the above copyright notice.
|
||||
*
|
||||
* @filesource
|
||||
* @copyright Copyright 2005-2008, Cake Software Foundation, Inc.
|
||||
* @link http://www.cakefoundation.org/projects/info/cakephp CakePHP(tm) Project
|
||||
* @package cake.tests
|
||||
* @subpackage cake.tests.fixtures
|
||||
* @since CakePHP(tm) v 1.2.0.6879 //Correct version number as needed**
|
||||
* @version $Revision$
|
||||
* @modifiedby $LastChangedBy$
|
||||
* @lastmodified $Date$
|
||||
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
|
||||
*/
|
||||
/**
|
||||
* Short description for file.
|
||||
*
|
||||
* Long description for file
|
||||
*
|
||||
* @package cake.tests
|
||||
* @subpackage cake.tests.fixtures
|
||||
* @since CakePHP(tm) v 1.2.0.6879 //Correct version number as needed**
|
||||
*/
|
||||
class DependencyFixture extends CakeTestFixture {
|
||||
var $name = 'Dependency';
|
||||
var $fields = array(
|
||||
'child_id' => 'integer',
|
||||
'parent_id' => 'integer'
|
||||
);
|
||||
var $records = array(
|
||||
array('child_id' => 1, 'parent_id' => 2),
|
||||
);
|
||||
}
|
||||
|
||||
?>
|
51
cake/tests/fixtures/node_fixture.php
vendored
Normal file
51
cake/tests/fixtures/node_fixture.php
vendored
Normal file
|
@ -0,0 +1,51 @@
|
|||
<?php
|
||||
/* SVN FILE: $Id$ */
|
||||
/**
|
||||
* Short description for file.
|
||||
*
|
||||
* Long description for file
|
||||
*
|
||||
* PHP versions 4 and 5
|
||||
*
|
||||
* CakePHP(tm) : Rapid Development Framework <http://www.cakephp.org/>
|
||||
* Copyright 2005-2008, Cake Software Foundation, Inc.
|
||||
* 1785 E. Sahara Avenue, Suite 490-204
|
||||
* Las Vegas, Nevada 89104
|
||||
*
|
||||
* Licensed under The MIT License
|
||||
* Redistributions of files must retain the above copyright notice.
|
||||
*
|
||||
* @filesource
|
||||
* @copyright Copyright 2005-2008, Cake Software Foundation, Inc.
|
||||
* @link http://www.cakefoundation.org/projects/info/cakephp CakePHP(tm) Project
|
||||
* @package cake.tests
|
||||
* @subpackage cake.tests.fixtures
|
||||
* @since CakePHP(tm) v 1.2.0.6879 //Correct version number as needed**
|
||||
* @version $Revision$
|
||||
* @modifiedby $LastChangedBy$
|
||||
* @lastmodified $Date$
|
||||
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
|
||||
*/
|
||||
/**
|
||||
* Short description for file.
|
||||
*
|
||||
* Long description for file
|
||||
*
|
||||
* @package cake.tests
|
||||
* @subpackage cake.tests.fixtures
|
||||
* @since CakePHP(tm) v 1.2.0.6879 //Correct version number as needed**
|
||||
*/
|
||||
class NodeFixture extends CakeTestFixture {
|
||||
var $name = 'Node';
|
||||
var $fields = array(
|
||||
'id' => array('type' => 'integer', 'key' => 'primary'),
|
||||
'name' => 'string',
|
||||
'state' => 'integer'
|
||||
);
|
||||
var $records = array(
|
||||
array('id' => 1, 'name' => 'First', 'state' => 50),
|
||||
array('id' => 2, 'name' => 'Second', 'state' => 60),
|
||||
);
|
||||
}
|
||||
|
||||
?>
|
Loading…
Add table
Reference in a new issue