Sha256: 87f7de40567d91bc005de94d56e3a4c44fae99664b13eef92af2079db1c7d84e
Contents?: true
Size: 510 Bytes
Versions: 8
Compression:
Stored size: 510 Bytes
Contents
module Fog module Compute class Ovirt class Real def storage_domains filter={} client.storagedomains(filter).map {|ovirt_obj| ovirt_attrs ovirt_obj} 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_attrs OVIRT::StorageDomain::new(self, sd) end end end end end end
Version data entries
8 entries across 8 versions & 4 rubygems