Angejia\Pea\CacheTest::testDel PHP Method

testDel() public method

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