public void Should_Copy_Object()
 {
     var azureClient = new WindowsAzureStorageService(CreateCmsConfigurationMock());
     var source = new Uri("http://bettercms.blob.core.windows.net/temp/newFile4.jpg");
     GetUploadRequest(source, azureClient);
     var destination = new Uri("http://bettercms.blob.core.windows.net/temp/newFile4 copy.jpg");
     azureClient.CopyObject(new Uri("http://bettercms.blob.core.windows.net/temp/newFile4.jpg"), destination);
     Assert.IsTrue(azureClient.ObjectExists(destination));
     azureClient.RemoveObject(source);
     azureClient.RemoveObject(destination);
 }