mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Remove personal comments for pull request
This commit is contained in:
parent
ee1980b8f5
commit
3258199193
1 changed files with 0 additions and 4 deletions
|
@ -320,14 +320,12 @@ class PaginatorComponentTest extends CakeTestCase {
|
|||
|
||||
$Controller->PaginatorControllerPost->order = null;
|
||||
|
||||
/* ORDER ARRAY FIELD => SORT MODE */
|
||||
$Controller->Paginator->settings = array(
|
||||
'order' => array('PaginatorControllerComment.id' => 'ASC')
|
||||
);
|
||||
$results = Hash::extract($Controller->Paginator->paginate('PaginatorControllerComment'), '{n}.PaginatorControllerComment.id');
|
||||
$this->assertEquals(array(1, 2, 3, 4, 5, 6), $results);
|
||||
|
||||
/* ORDER ARRAY "FIELD SORT" MODE */
|
||||
$Controller->Paginator->settings = array(
|
||||
'order' => array('PaginatorControllerComment.id DESC')
|
||||
);
|
||||
|
@ -627,7 +625,6 @@ class PaginatorComponentTest extends CakeTestCase {
|
|||
$result = $Controller->Paginator->validateSort($Controller->PaginatorControllerPost, array());
|
||||
$this->assertArrayNotHasKey('order', $result);
|
||||
|
||||
/* DEFAULT */
|
||||
$Controller->PaginatorControllerPost->order = array(
|
||||
'PaginatorControllerPost.id',
|
||||
'PaginatorControllerPost.created' => 'asc'
|
||||
|
@ -639,7 +636,6 @@ class PaginatorComponentTest extends CakeTestCase {
|
|||
);
|
||||
$this->assertEquals($expected, $result['order']);
|
||||
|
||||
/* CLASSIC */
|
||||
$Controller->PaginatorControllerPost->order = array(
|
||||
'PaginatorControllerPost.id ASC',
|
||||
'PaginatorControllerPost.created DESC'
|
||||
|
|
Loading…
Reference in a new issue