Sha256: bbfbf8973381e123b30b755e297478e2eca362c9225e0bf33076eb25edce6524
Contents?: true
Size: 378 Bytes
Versions: 8
Compression:
Stored size: 378 Bytes
Contents
module Fog module Compute class Ovirt 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
Version data entries
8 entries across 8 versions & 2 rubygems