del() public method

public del ( $keys )
Example #1
0
 public function testDel()
 {
     $redis = M::mock(Redis::class);
     $redis->shouldReceive('del')->with(['a', 'b']);
     $cache = new RedisCache($redis);
     $cache->del(['a', 'b']);
 }