diff options
author | Anton Lindqvist <anton@qvister.se> | 2012-01-23 23:18:29 +0100 |
---|---|---|
committer | Anton Lindqvist <anton@qvister.se> | 2012-01-23 23:18:29 +0100 |
commit | 363b7dab5d73d3a57fb495daf0212df71afa2c1d (patch) | |
tree | 22ed2d363c32bab64b26a761f8d018a8a5d0405f /application/controllers | |
parent | 3573af8b98ceeb2308a1eaf02ee3b327dfca82b0 (diff) |
Removed test_redis controller.
Diffstat (limited to 'application/controllers')
-rw-r--r-- | application/controllers/test_redis.php | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/application/controllers/test_redis.php b/application/controllers/test_redis.php deleted file mode 100644 index b84c652d7..000000000 --- a/application/controllers/test_redis.php +++ /dev/null @@ -1,43 +0,0 @@ -<?php -class Test_redis extends CI_Controller -{ - - function __construct() - { - parent::__construct(); - - $this->load->library('unit_test'); - - $this->load->driver('cache', array('adapter' => 'redis')); - } - - function index() - { - $this->unit->run($this->cache->redis->is_supported(), 'is_true'); - - $this->unit->run($this->cache->redis->save('foo', 'bar'), 'is_true'); - - $this->unit->run($this->cache->redis->get('foo'), 'bar'); - - $this->unit->run($this->cache->redis->delete('foo'), 'is_true'); - - $this->unit->run($this->cache->redis->save('foo', 'bar', 1800), 'is_true'); - - $this->unit->run( - $this->cache->redis->get_metadata('foo'), - array( - 'data' => 'bar', - 'expire' => time() + 1800 - ) - ); - - $this->unit->run($this->cache->redis->clean(), 'is_true'); - - $this->unit->run($this->cache->redis->get('foo'), 'is_false'); - - $this->unit->run($this->cache->redis->cache_info(), 'is_array'); - - echo $this->unit->report(); - } - -}
\ No newline at end of file |