mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-31 17:16:18 +00:00
Added test for HTML5 FormHelper::input()
integer to number in $map
This commit is contained in:
parent
333f36585b
commit
804e88b092
1 changed files with 32 additions and 1 deletions
|
@ -97,7 +97,8 @@ class Contact extends CakeTestModel {
|
|||
'password' => array('type' => 'string', 'null' => '', 'default' => '', 'length' => '255'),
|
||||
'published' => array('type' => 'date', 'null' => true, 'default' => null, 'length' => null),
|
||||
'created' => array('type' => 'date', 'null' => '1', 'default' => '', 'length' => ''),
|
||||
'updated' => array('type' => 'datetime', 'null' => '1', 'default' => '', 'length' => null)
|
||||
'updated' => array('type' => 'datetime', 'null' => '1', 'default' => '', 'length' => null),
|
||||
'age' => array('type' => 'integer', 'null' => '', 'default' => '', 'length' => null)
|
||||
);
|
||||
|
||||
/**
|
||||
|
@ -886,6 +887,36 @@ class FormHelperTest extends CakeTestCase {
|
|||
'/div'
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests correct generation of text fields for double and float fields
|
||||
*
|
||||
* @access public
|
||||
* @return void
|
||||
*/
|
||||
public function testTextFieldTypeNumberGenerationForIntegers() {
|
||||
$model = ClassRegistry::getObject('Contact');
|
||||
$model->setSchema(array('foo' => array(
|
||||
'type' => 'integer',
|
||||
'null' => false,
|
||||
'default' => null,
|
||||
'length' => null
|
||||
)));
|
||||
|
||||
$this->Form->create('Contact');
|
||||
$result = $this->Form->input('foo');
|
||||
$expected = array(
|
||||
'div' => array('class' => 'input text'),
|
||||
'label' => array('for' => 'ContactFoo'),
|
||||
'Foo',
|
||||
'/label',
|
||||
array('input' => array(
|
||||
'type' => 'number', 'name' => 'data[Contact][foo]',
|
||||
'id' => 'ContactFoo'
|
||||
)),
|
||||
'/div'
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* testFormSecurityMultipleFields method
|
||||
|
|
Loading…
Add table
Reference in a new issue