mirror of
https://github.com/idanoo/php-resque.git
synced 2024-11-22 16:25:14 +00:00
24 lines
607 B
PHP
24 lines
607 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Resque test case class. Contains setup and teardown methods.
|
||
|
*
|
||
|
* @package Resque/Tests
|
||
|
* @author Chris Boulton <chris.boulton@interspire.com>
|
||
|
* @copyright (c) 2010 Chris Boulton
|
||
|
* @license http://www.opensource.org/licenses/mit-license.php
|
||
|
*/
|
||
|
class Resque_Tests_TestCase extends PHPUnit_Framework_TestCase
|
||
|
{
|
||
|
protected $resque;
|
||
|
protected $redis;
|
||
|
|
||
|
public function setUp()
|
||
|
{
|
||
|
$config = file_get_contents(REDIS_CONF);
|
||
|
preg_match('#^\s*port\s+([0-9]+)#m', $config, $matches);
|
||
|
$this->redis = new Redisent('localhost', $matches[1]);
|
||
|
|
||
|
// Flush redis
|
||
|
$this->redis->flushAll();
|
||
|
}
|
||
|
}
|