Sha256: 4e1dc3ca0504f82687030ab4e695c5efb3f311f2582ba5e4b12e3cc9e21ae6d6
Contents?: true
Size: 571 Bytes
Versions: 9
Compression:
Stored size: 571 Bytes
Contents
module Fog module Ovirt class Compute class V4 class Real def list_operating_systems client.system_service.operating_systems_service.list.map { |ovirt_obj| ovirt_attrs ovirt_obj } end end class Mock def list_operating_systems xml = read_xml "operating_systems.xml" Nokogiri::XML(xml).xpath("/operating_systems/operating_system").map do |os| ovirt_attrs OvirtSDK4::Reader.read(os.to_s) end end end end end end end
Version data entries
9 entries across 9 versions & 1 rubygems