Sha256: 85ddf885b97b6cc5e8c341feed6f9321056eda67c7224e884e35b0a5a3ef6e1d
Contents?: true
Size: 595 Bytes
Versions: 78
Compression:
Stored size: 595 Bytes
Contents
Shindo.tests('Fog::Compute[:xenserver] | VIFs collection', ['xenserver']) do conn = Fog::Compute[:xenserver] tests('The vifs collection') do vifs = conn.vifs.all test('should not be empty') { !vifs.empty? } test('should be a kind of Fog::Compute::XenServer::Vifs') { vifs.kind_of? Fog::Compute::XenServer::Vifs } tests('should be able to reload itself').succeeds { vifs.reload } tests('should be able to get a model') do tests('by reference').succeeds { vifs.get(vifs.first.reference).is_a? Fog::Compute::XenServer::VIF } end end end
Version data entries
78 entries across 78 versions & 11 rubygems