From: Coleman Watts Date: Thu, 26 Feb 2015 17:53:12 +0000 (-0500) Subject: CRM-15988 - Test fixes X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=6730d7a17fa121f731158740d4f70aa4dd5092da;p=civicrm-core.git CRM-15988 - Test fixes --- diff --git a/tests/phpunit/Civi/API/RequestTest.php b/tests/phpunit/Civi/API/RequestTest.php index 1c281b5144..6768d6885c 100644 --- a/tests/phpunit/Civi/API/RequestTest.php +++ b/tests/phpunit/Civi/API/RequestTest.php @@ -120,11 +120,19 @@ class RequestTest extends \CiviUnitTestCase { $cases = array(); $cases[] = array( array('MyEntity', 'MyAction', 3), - array('MyEntity', 'myAction', 3), + array('MyEntity', 'myaction', 3), ); $cases[] = array( array('my+entity', 'MyAction', 3), - array('my_entity', 'myAction', 3), + array('MyEntity', 'myaction', 3), + ); + $cases[] = array( + array('my entity with under_scores', 'My_Action', 3), + array('MyEntityWithUnderScores', 'my_action', 3), + ); + $cases[] = array( + array('u_f_match', 'get Something', 3), + array('UFMatch', 'get_something', 3), ); $cases[] = array( array('MyEntity', 'MyAction', 4),