Phalcon\Test\Unit\Tag\TagSelectStaticTest::testSelectStaticOptGroupArrayParameterWithValue PHP Метод

testSelectStaticOptGroupArrayParameterWithValue() публичный Метод

Tests selectStatic with value in parameters
С версии: 2014-09-05
Автор: Nikolaos Dimopoulos ([email protected])
    public function testSelectStaticOptGroupArrayParameterWithValue()
    {
        $this->specify("selectStatic with array parameter with value returns invalid HTML", function () {
            Tag::resetInput();
            $params = ['x_name', 'value' => 'A1', 'class' => 'x_class'];
            $options = ["Active" => ['A1' => 'A One', 'A2' => 'A Two'], "B" => "B One"];
            $expected = '<select id="x_name" name="x_name" class="x_class">' . PHP_EOL . chr(9) . '<optgroup label="Active">' . PHP_EOL . chr(9) . '<option selected="selected" value="A1">A One</option>' . PHP_EOL . chr(9) . '<option value="A2">A Two</option>' . PHP_EOL . chr(9) . '</optgroup>' . PHP_EOL . chr(9) . '<option value="B">B One</option>' . PHP_EOL . '</select>';
            $actual = Tag::selectStatic($params, $options);
            Tag::resetInput();
            expect($actual)->equals($expected);
        });
    }