PredisPathUnitTestCase.test 427 B

123456789101112131415161718
  1. <?php
  2. class Redis_Tests_Path_PredisPathUnitTestCase extends Redis_Tests_Path_PathUnitTestCase
  3. {
  4. public static function getInfo()
  5. {
  6. return array(
  7. 'name' => 'Predis path inc replacement',
  8. 'description' => 'Tests Predis path inc replacement.',
  9. 'group' => 'Redis',
  10. );
  11. }
  12. protected function getClientInterface()
  13. {
  14. return 'Predis';
  15. }
  16. }