public function testCreateDirFail()
 {
     $mock = $this->getS3Client();
     $mock->shouldReceive('putObject')->andReturn(false);
     $adapter = new Adapter($mock, 'bucketname');
     $result = $adapter->createDir('something', new Config());
     $this->assertFalse($result);
 }