Sha256: 187c0397c6a1c9d7d2eea880da0dd3892d71c96dcb07337511a001092358029e
Contents?: true
Size: 425 Bytes
Versions: 15
Compression:
Stored size: 425 Bytes
Contents
module Fog module Compute class Ovirt class V3 class Real def get_instance_type(id) ovirt_attrs client.instance_type(id) end end class Mock def get_instance_type(_id) xml = read_xml "instance_type.xml" ovirt_attrs OVIRT::InstanceType.new(self, Nokogiri::XML(xml).root) end end end end end end
Version data entries
15 entries across 13 versions & 2 rubygems