Exemplo n.º 1
0
 public function testInsert()
 {
     $this->rediska->appendToList('test', 'aaa');
     $this->rediska->appendToList('test', 'bbb');
     $reply = $this->list->insert('after', 'aaa', 'ccc');
     $this->assertEquals(3, $reply);
     $reply = $this->list->insert('before', 'aaa', 'ddd');
     $this->assertEquals(4, $reply);
     $reply = $this->rediska->getList('test');
     $this->assertEquals(array('ddd', 'aaa', 'ccc', 'bbb'), $reply);
 }