Sha256: 99d800a68a742b40cf243f0d6bc480ff7cd0e35941491206d71952ccf0872947
Contents?: true
Size: 571 Bytes
Versions: 13
Compression:
Stored size: 571 Bytes
Contents
module Fog module Compute class Ovirt 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
13 entries across 11 versions & 2 rubygems