Merge pull request #498 from shama/patch-loadFixtures

Remove unnecessary loadFixtures() calls
This commit is contained in:
Mark Story 2012-02-21 17:28:52 -08:00
commit 540f6669fd
2 changed files with 0 additions and 3 deletions

View file

@ -1291,7 +1291,6 @@ class TreeBehaviorNumberTest extends CakeTestCase {
* @return void
*/
public function testFindThreaded() {
$this->loadFixtures('Person');
$Model = new Person();
$Model->recursive = -1;
$Model->Behaviors->attach('Tree', array('parent' => 'mother_id'));

View file

@ -1082,8 +1082,6 @@ class BehaviorCollectionTest extends CakeTestCase {
* @return void
*/
public function testBindModelCallsInBehaviors() {
$this->loadFixtures('Article', 'Comment');
// hasMany
$Article = new Article();
$Article->unbindModel(array('hasMany' => array('Comment')));