Extends
lithium\test\UnitSource
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);
}