Browse Source

Remove redundant test.

This test serves no purpose now. With input methods reasonably
idempotent we don't need tests like this.
Mark Story 12 years ago
parent
commit
a8db3e3df3
1 changed files with 0 additions and 27 deletions
  1. 0 27
      tests/TestCase/View/Helper/FormHelperTest.php

+ 0 - 27
tests/TestCase/View/Helper/FormHelperTest.php

@@ -7052,33 +7052,6 @@ class FormHelperTest extends TestCase {
 	}
 
 /**
- * testMultipleFormWithIdFields method
- *
- * @return void
- */
-	public function testMultipleFormWithIdFields() {
-		$this->markTestIncomplete('Need to revisit once models work again.');
-		$this->Form->create('UserForm');
-
-		$result = $this->Form->input('id');
-		$this->assertTags($result, array('input' => array(
-			'type' => 'hidden', 'name' => 'UserForm[id]', 'id' => 'UserFormId'
-		)));
-
-		$result = $this->Form->input('ValidateItem.id');
-		$this->assertTags($result, array('input' => array(
-			'type' => 'hidden', 'name' => 'ValidateItem[id]',
-			'id' => 'ValidateItemId'
-		)));
-
-		$result = $this->Form->input('ValidateUser.id');
-		$this->assertTags($result, array('input' => array(
-			'type' => 'hidden', 'name' => 'ValidateUser[id]',
-			'id' => 'ValidateUserId'
-		)));
-	}
-
-/**
  * testDbLessModel method
  *
  * @return void