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