Adding recursive level = 3 for Ticket #2613

git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@5600 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
phpnut 2007-08-29 03:06:40 +00:00
parent f053eb7d26
commit fc3990cc87

View file

@ -1427,9 +1427,11 @@ function testRecursiveFindAllWithLimit() {
function testSelFAssociationAfterFind() {
$afterFindModel =& new NodeAfterFind();
$afterFindModel->recursive = 3;
$afterFindData = $afterFindModel->findAll();
$noAfterFindModel =& new NodeNoAfterFind();
$noAfterFindModel->recursive = 3;
$noAfterFindData = $noAfterFindModel->findAll();
$this->assertNotEqual($afterFindModel, $noAfterFindModel);