Angejia\Pea\MetaTest::testPrefixForRow PHP Method

testPrefixForRow() public method

public testPrefixForRow ( )
    public function testPrefixForRow()
    {
        $redis = M::mock(Redis::class);
        $redis->shouldReceive('get')->with('2d23e940e190c4fefe3955fe8cf5c8a8')->andReturn(1);
        $meta = new RedisMeta($redis);
        $prefix = $meta->prefix('angejia', 'user');
        $this->assertEquals('pea:angejia:user:1', $prefix);
    }