Sha256: 5e0a419167126721129be090fee01459eae0e46420b1f8681966bcd1748c9a26
Contents?: true
Size: 458 Bytes
Versions: 80
Compression:
Stored size: 458 Bytes
Contents
module Fog module Compute class Ovirt class Real def storage_domains filter={} client.storagedomains(filter) end end class Mock def storage_domains(filters = {}) xml = read_xml 'storage_domains.xml' Nokogiri::XML(xml).xpath('/storage_domains/storage_domain').collect do |sd| OVIRT::StorageDomain::new(self, sd) end end end end end end
Version data entries
80 entries across 80 versions & 13 rubygems