Sha256: f63e91d0585d21d46c6f0389771f914004c5f18be93d7d91c074e36477d2e497
Contents?: true
Size: 599 Bytes
Versions: 15
Compression:
Stored size: 599 Bytes
Contents
module Fog module Storage class AzureRM # This class provides the actual implementation for service calls. # This is to make this library compatible with CarrierWave. class Real def copy_object(source_container, source_blob, target_container, target_blob, options = {}) copy_blob(target_container, target_blob, source_container, source_blob, options) end end # This class provides the mock implementation for unit tests. class Mock def copy_object(*args) copy_blob(*args) end end end end end
Version data entries
15 entries across 15 versions & 1 rubygems