CRM-15988 - Test fixes
authorColeman Watts <coleman@civicrm.org>
Thu, 26 Feb 2015 17:53:12 +0000 (12:53 -0500)
committerColeman Watts <coleman@civicrm.org>
Thu, 26 Feb 2015 17:53:12 +0000 (12:53 -0500)
tests/phpunit/Civi/API/RequestTest.php

index 1c281b5144c78ef26f2d04e6a40833bf0c6eee63..6768d6885c0d6dcc3b3a0455e1cb200b6fff3f3d 100644 (file)
@@ -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),