Skip to content

Commit

Permalink
Remove unnecessary loadFixtures() calls
Browse files Browse the repository at this point in the history
  • Loading branch information
shama committed Feb 17, 2012
1 parent a9c279a commit 7588250
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
Expand Up @@ -1291,7 +1291,6 @@ public function testArraySyntax() {
* @return void * @return void
*/ */
public function testFindThreaded() { public function testFindThreaded() {
$this->loadFixtures('Person');
$Model = new Person(); $Model = new Person();
$Model->recursive = -1; $Model->recursive = -1;
$Model->Behaviors->attach('Tree', array('parent' => 'mother_id')); $Model->Behaviors->attach('Tree', array('parent' => 'mother_id'));
Expand Down
2 changes: 0 additions & 2 deletions lib/Cake/Test/Case/Model/BehaviorCollectionTest.php
Expand Up @@ -1082,8 +1082,6 @@ public function testBehaviorMethodDispatchingWithData() {
* @return void * @return void
*/ */
public function testBindModelCallsInBehaviors() { public function testBindModelCallsInBehaviors() {
$this->loadFixtures('Article', 'Comment');

// hasMany // hasMany
$Article = new Article(); $Article = new Article();
$Article->unbindModel(array('hasMany' => array('Comment'))); $Article->unbindModel(array('hasMany' => array('Comment')));
Expand Down

0 comments on commit 7588250

Please sign in to comment.