ImboIntegrationTest\Storage\S3Test::testGetStatus PHP Method

testGetStatus() public method

public testGetStatus ( )
    public function testGetStatus()
    {
        $this->assertTrue($this->getDriver()->getStatus());
        $driver = new S3(['key' => $GLOBALS['AWS_S3_KEY'], 'secret' => $GLOBALS['AWS_S3_SECRET'], 'bucket' => uniqid()]);
        $this->assertFalse($driver->getStatus());
    }