Sha256: 79939cf6a52f56c3f830053151c4b9a42097be06b9757b337b6ef97a2762517f
Contents?: true
Size: 519 Bytes
Versions: 15
Compression:
Stored size: 519 Bytes
Contents
class Ey::Core::Client class Real def finish_backup(params={}) id = params["id"] request( :path => "backups/#{id}/finish", :method => :put, ) end end # Real class Mock def finish_backup(params={}) backup = find(:backups, resource_identity(params)) backup["finished_at"] ||= Time.now backup["finished"] = true response( :body => {"backup" => backup}, :status => 200, ) end end # Mock end # Ey::Core::Client
Version data entries
15 entries across 15 versions & 1 rubygems