Basho\Tests\BucketOperationsTest::testFetch2 PHP Method

testFetch2() public method

public testFetch2 ( )
    public function testFetch2()
    {
        $command = (new Command\Builder\FetchBucketProperties(static::$riak))->buildBucket('test')->build();
        $response = $command->execute();
        $this->assertEquals('200', $response->getCode());
        $bucket = $response->getBucket();
        $this->assertNotEmpty($bucket->getProperties());
        $this->assertTrue($bucket->getProperty('allow_mult'));
    }