* @author Shohei Nakajima * @link http://www.netcommons.org NetCommons Project * @license http://www.netcommons.org/license.txt NetCommons License * @copyright Copyright 2014, NetCommons Project */ App::uses('PageFixture', 'Pages.Test/Fixture'); /** * SavePageBehavior::save()テスト用Fixture * * @author Shohei Nakajima * @package NetCommons\Pages\Test\Fixture */ class TestSavePageBehaviorSaveModelFixture extends PageFixture { /** * Model name * * @var string */ public $name = 'Page'; /** * Full Table Name * * @var string */ public $table = 'pages'; /** * Records * * @var array */ public $records = array( array( 'id' => '1', 'room_id' => '2', 'root_id' => null, 'parent_id' => null, 'lft' => '1', 'rght' => '8', 'permalink' => '', 'slug' => null, ), ); }