Skip to content

Commit

Permalink
Unskip relevant select() tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Feb 17, 2014
1 parent 9c270cb commit 9d0ebce
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions tests/TestCase/View/Helper/FormHelperTest.php
Expand Up @@ -4331,7 +4331,6 @@ public function testDomIdSuffixCollisionResolvement() {
* @return void
*/
public function testSelect() {
$this->markTestIncomplete('Need to revisit once models work again.');
$result = $this->Form->select('Model.field', array());
$expected = array(
'select' => array('name' => 'Model[field]', 'id' => 'ModelField'),
Expand Down Expand Up @@ -4499,7 +4498,6 @@ public function testSelect() {
* @return void
*/
public function testSelectOptionGroupEscaping() {
$this->markTestIncomplete('Need to revisit once models work again.');
$options = array(
'>< Key' => array(
1 => 'One',
Expand Down Expand Up @@ -4541,7 +4539,6 @@ public function testSelectOptionGroupEscaping() {
* @return void
*/
public function testSelectWithNullAttributes() {
$this->markTestIncomplete('Need to revisit once models work again.');
$result = $this->Form->select('Model.field', array('first', 'second'), array('empty' => false));
$expected = array(
'select' => array('name' => 'Model[field]', 'id' => 'ModelField'),
Expand Down Expand Up @@ -4627,7 +4624,6 @@ public function testNestedSelect() {
* @return void
*/
public function testSelectMultiple() {
$this->markTestIncomplete('Need to revisit once models work again.');
$options = array('first', 'second', 'third');
$result = $this->Form->select(
'Model.multi_field', $options, array('multiple' => true)
Expand Down Expand Up @@ -4714,7 +4710,6 @@ public function testCheckboxZeroValue() {
* @return void
*/
public function testSelectMultipleWithDisabledElements() {
$this->markTestIncomplete('Need to revisit once models work again.');
$options = array(1 => 'One', 2 => 'Two', '3' => 'Three', '3x' => 'Stringy');
$disabled = array(2, 3);
$result = $this->Form->select('Contact.multiple', $options, array('multiple' => 'multiple', 'disabled' => $disabled));
Expand Down Expand Up @@ -4810,7 +4805,6 @@ public function testSelectMultipleWithDisabledElements() {
* @return void
*/
public function testSelectWithDisabledElements() {
$this->markTestIncomplete('Need to revisit once models work again.');
$options = array(1 => 'One', 2 => 'Two', '3' => 'Three', '3x' => 'Stringy');
$disabled = array(2, 3);
$result = $this->Form->select('Model.field', $options, array('disabled' => $disabled));
Expand Down Expand Up @@ -5306,7 +5300,6 @@ public function testSelectMultipleCheckboxSecurity() {
* @return void
*/
public function testSelectMultipleSecureWithNoOptions() {
$this->markTestIncomplete('Need to revisit once models work again.');
$this->Form->request->params['_csrfToken'] = 'testkey';
$this->assertEquals(array(), $this->Form->fields);

Expand Down Expand Up @@ -5512,7 +5505,6 @@ public function testSelectHiddenFieldOmission() {
* @return void
*/
public function testSelectCheckboxMultipleOverrideName() {
$this->markTestIncomplete('Need to revisit once models work again.');
$result = $this->Form->input('category', array(
'type' => 'select',
'multiple' => 'checkbox',
Expand Down

0 comments on commit 9d0ebce

Please sign in to comment.