Sha256: 5b718b6f50b4de734485c6db7a8558955d79c8581c55513cb271e84037176fce
Contents?: true
Size: 772 Bytes
Versions: 23
Compression:
Stored size: 772 Bytes
Contents
module Fog module Compute class Ecloud class Real basic_request :get_operating_system end class Mock def get_operating_system(uri) os_name, compute_pool_id = uri.match(/operatingsystems\/(.*)\/computepools\/(\d+)$/).captures compute_pool_id = compute_pool_id.to_i operating_systems = self.data[:operating_systems].values.select{|os| os[:compute_pool_id] == compute_pool_id} operating_system = operating_systems.find{|os| os[:short_name] == os_name} if operating_system response(:body => Fog::Ecloud.slice(operating_system, :id, :compute_pool_id, :short_name)) else response(:status => 404) # ? end end end end end end
Version data entries
23 entries across 23 versions & 5 rubygems