Sha256: c5651eef15a3570720da56df6847e3c98f9b475eec52c7b89cbc30850a595719
Contents?: true
Size: 548 Bytes
Versions: 15
Compression:
Stored size: 548 Bytes
Contents
module Fog module Compute class Ovirt class V3 class Real def list_operating_systems client.operating_systems.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 OVIRT::OperatingSystem.new(self, os) end end end end end end end
Version data entries
15 entries across 13 versions & 2 rubygems