lithium\tests\cases\template\HelperTest::testOptions PHP Method

testOptions() public method

public testOptions ( )
    public function testOptions()
    {
        $defaults = array('value' => null);
        $options = array('value' => 1, 'title' => 'one');
        $expected = array(array('value' => 1, 'title' => 'one'), array('title' => 'one'));
        $result = $this->helper->testOptions($defaults, $options);
        $this->assertEqual($expected, $result);
    }