Skip to content

Commit

Permalink
Add fixture for failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
jadb committed Jan 6, 2015
1 parent 5c90686 commit 83644ea
Showing 1 changed file with 46 additions and 0 deletions.
@@ -0,0 +1,46 @@
<?php
/**
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
*
* Licensed under The MIT License
* For full copyright and license information, please see the LICENSE.txt
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://cakephp.org CakePHP(tm) Project
* @since 3.0.0
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
namespace Company\TestPluginThree\Test\Fixture;

use Cake\TestSuite\Fixture\TestFixture;

/**
* Plugin article fixture.
*/
class ArticlesFixture extends TestFixture
{

/**
* fields property
*
* @var array
*/
public $fields = [
'id' => ['type' => 'integer'],
'author_id' => ['type' => 'integer', 'null' => true],
'title' => ['type' => 'string', 'null' => true],
'body' => 'text',
'_constraints' => ['primary' => ['type' => 'primary', 'columns' => ['id']]]
];

/**
* records property
*
* @var array
*/
public $records = [
['author_id' => 1, 'title' => 'Plugin Article', 'body' => 'Plugin Article Body'],
];
}

0 comments on commit 83644ea

Please sign in to comment.