Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpredis/phpredis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/TestRedis.php')
-rw-r--r--tests/TestRedis.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/TestRedis.php b/tests/TestRedis.php
index 65bc63ca..60f015f5 100644
--- a/tests/TestRedis.php
+++ b/tests/TestRedis.php
@@ -264,6 +264,12 @@ class Redis_Test extends TestSuite
$this->assertTrue($this->redis->set('foo','barbaz', Array('not-valid','nx','invalid','ex'=>200)));
$this->assertEquals($this->redis->ttl('foo'), 200);
$this->assertEquals($this->redis->get('foo'), 'barbaz');
+
+ /* Pass NULL as the optional arguments which should be ignored */
+ $this->redis->del('foo');
+ $this->redis->set('foo','bar', NULL);
+ $this->assertEquals($this->redis->get('foo'), 'bar');
+ $this->assertTrue($this->redis->ttl('foo')<0);
}
public function testGetSet() {