Cleaning up code formatting on Paginator helper test, and adding extra test case

git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@6768 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
nate 2008-05-08 04:01:07 +00:00
parent 231d585221
commit e2cca50ba9

View file

@ -172,22 +172,27 @@ class PaginatorTest extends UnitTestCase {
$this->Paginator->options = array();
$this->Paginator->params = array();
$options = array('paging' => array(
'Article' => array(
$options = array('paging' => array('Article' => array(
'order' => 'desc',
'sort' => 'title'
)
)
);
)));
$this->Paginator->options($options);
$expected = array('Article' => array(
'order' => 'desc',
'sort' => 'title'
)
);
));
$this->assertEqual($expected, $this->Paginator->params['paging']);
$this->Paginator->options = array();
$this->Paginator->params = array();
$options = array('Article' => array(
'order' => 'desc',
'sort' => 'title'
));
$this->Paginator->options($options);
$this->assertEqual($expected, $this->Paginator->params['paging']);
}
function testPagingLinks() {