function CCKSelectOtherTest::testSelectOtherOptions in CCK Select Other 6
File
- tests/cck_select_other.test, line 157 
- test file for cck_select_other Testing file
Class
- CCKSelectOtherTest
- SimpleTest class for cck_select_other
Code
function testSelectOtherOptions() {
  $options_arr = cck_select_other_options($this->test_field);
  $this
    ->assertEqual(5, count($options_arr), t('There are 5 = %count options set on the field.', array(
    '%count' => count($options_arr),
  )));
}