Removing old AclNodeTest methods this code is no longer valid on 1.2

git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@4774 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
phpnut 2007-04-05 04:22:42 +00:00
parent 003e30673e
commit 56b7050858

View file

@ -101,28 +101,6 @@ class AclNodeTest extends CakeTestCase {
var $fixtures = array( 'core.aro', 'core.aco', 'core.aros_aco', 'core.aco_action' );
function testNodeNesting() {
$this->Aro =& new AroTest();
$this->Aro->create(1, null, 'Food');
$this->Aro->create(2, null, 'Fruit');
$this->Aro->create(3, null, 'Red');
$this->Aro->create(4, null, 'Cherry');
$this->Aro->create(5, null, 'Yellow');
$this->Aro->create(6, null, 'Banana');
$this->Aro->create(7, null, 'Meat');
$this->Aro->create(8, null, 'Beef');
$this->Aro->create(9, null, 'Pork');
$this->Aro->setParent('Food', 'Meat');
$this->Aro->setParent('Food', 'Fruit');
$this->Aro->setParent('Fruit', 'Yellow');
$this->Aro->setParent('Yellow', 'Banana');
$this->Aro->setParent('Fruit', 'Red');
$this->Aro->setParent('Red', 'Cherry');
$this->Aro->setParent('Meat', 'Pork');
$this->Aro->setParent('Meat', 'Beef');
}
}