Skip to content
Snippets Groups Projects
Commit aa7e7ff0 authored by colemanw's avatar colemanw
Browse files

Fix custom group test

parent 09d15676
No related branches found
No related tags found
No related merge requests found
......@@ -233,7 +233,7 @@ function civicrm_api3_generic_getoptions($apiRequest) {
* @param array $fieldsToResolve anny field resolutions specifically requested
*/
function _civicrm_api3_generic_get_metadata_options(&$metadata, $entity, $fieldname, $fieldSpec, $fieldsToResolve){
if(empty($fieldSpec['pseudoconstant'])) {
if(empty($fieldSpec['pseudoconstant']) && empty($fieldSpec['enumValues'])) {
return;
}
......
......@@ -180,23 +180,22 @@ class api_v3_CustomGroupTest extends CiviUnitTestCase {
$this->assertNotNull($result['id'], 'In line ' . __LINE__);
$this->assertEquals($result['values'][$result['id']]['extends'], 'Individual', 'In line ' . __LINE__);
}
/**
* check with valid array
*/
function testCustomGroupGetFields() {
$params = array(
'version' => $this->_apiversion,
'version' => $this->_apiversion,
'options' => array('get_options' => 'style'),
);
$result = civicrm_api('custom_group', 'getfields', $params);
$this->assertAPISuccess($result);
$this->assertArrayKeyExists('options', $result['values'], ' check that options are rendered for fieldtype enum');
$this->assertEquals('Tab', $result['values']['style']['options'][0]);
$this->assertEquals('Inline', $result['values']['style']['options'][1]);
}
/**
* check with extends array length greater than 1
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment