Phalcon\Test\Unit\Tag\TagFileFieldTest::testFileFieldArrayParameterWithNameNoId PHP Method

testFileFieldArrayParameterWithNameNoId() public method

Tests fileField with name and no id in parameter
Since: 2014-09-05
Author: Nikolaos Dimopoulos ([email protected])
    public function testFileFieldArrayParameterWithNameNoId()
    {
        $this->specify("fileField with array parameter with name no id returns invalid HTML Strict", function () {
            $options = ['x_name', 'name' => 'x_other', 'class' => 'x_class', 'size' => '10'];
            $expected = '<input type="file" id="x_name" ' . 'name="x_other" class="x_class" size="10"';
            $this->tester->testFieldParameter('fileField', $options, $expected, false);
        });
        $this->specify("fileField with array parameter with name no id returns invalid HTML XHTML", function () {
            $options = ['x_name', 'name' => 'x_other', 'class' => 'x_class', 'size' => '10'];
            $expected = '<input type="file" id="x_name" ' . 'name="x_other" class="x_class" size="10"';
            $this->tester->testFieldParameter('fileField', $options, $expected, false);
        });
    }