lithium\tests\cases\template\helper\FormTest::testFormFieldSelect PHP Method

testFormFieldSelect() public method

public testFormFieldSelect ( )
    public function testFormFieldSelect()
    {
        $result = $this->form->field('states', array('type' => 'select', 'list' => array('CA', 'RI')));
        $this->assertTags($result, array('div' => array(), 'label' => array('for' => 'States'), 'States', '/label', 'select' => array('name' => 'states', 'id' => 'States'), array('option' => array('value' => '0')), 'CA', '/option', array('option' => array('value' => '1')), 'RI', '/option', '/select'));
    }
FormTest