You are here

PredisLockingUnitTestCase.test in Redis 7.3

Same filename and directory in other branches
  1. 7.2 lib/Redis/Tests/Lock/PredisLockingUnitTestCase.test

File

lib/Redis/Tests/Lock/PredisLockingUnitTestCase.test
View source
<?php

class Redis_Tests_Lock_PredisLockingUnitTestCase extends Redis_Tests_Lock_LockingUnitTestCase {
  public static function getInfo() {
    return array(
      'name' => 'Predis Redis locking',
      'description' => 'Ensure that Redis locking feature is working OK.',
      'group' => 'Redis',
    );
  }
  protected function getLockBackendClass() {
    return 'Redis_Lock_Predis';
  }
  protected function getClientInterface() {
    return 'Predis';
  }

}