Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
Core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
justinfreeman (Agileware)
Core
Commits
aa7e7ff0
Commit
aa7e7ff0
authored
11 years ago
by
colemanw
Browse files
Options
Downloads
Patches
Plain Diff
Fix custom group test
parent
09d15676
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
api/v3/Generic.php
+1
-1
1 addition, 1 deletion
api/v3/Generic.php
tests/phpunit/api/v3/CustomGroupTest.php
+3
-4
3 additions, 4 deletions
tests/phpunit/api/v3/CustomGroupTest.php
with
4 additions
and
5 deletions
api/v3/Generic.php
+
1
−
1
View file @
aa7e7ff0
...
...
@@ -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
;
}
...
...
This diff is collapsed.
Click to expand it.
tests/phpunit/api/v3/CustomGroupTest.php
+
3
−
4
View file @
aa7e7ff0
...
...
@@ -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
*/
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment