Sha256: 66f405fd6b14b166e6080dbf7febab86906d2f06e7bb8ea6fe0d62375a0a8842
Contents?: true
Size: 1.02 KB
Versions: 25
Compression:
Stored size: 1.02 KB
Contents
Shindo.tests('Fog::Compute[:xenserver] | console model', ['xenserver']) do consoles = Fog::Compute[:xenserver].consoles console = consoles.first tests('The console model should') do tests('have attributes') do model_attribute_hash = console.attributes attributes = [ :reference, :location, :protocol, :uuid, :__vm ] tests("The console model should respond to") do attributes.each do |attribute| test("#{attribute}") { console.respond_to? attribute } end end tests("The attributes hash should have key") do attributes.each do |attribute| test("#{attribute}") { model_attribute_hash.key? attribute } end end end test('be a kind of Fog::Compute::XenServer::Console') { console.kind_of? Fog::Compute::XenServer::Console } end tests('A real console should') do tests('return valid vm') do test('object') { console.vm.kind_of? Fog::Compute::XenServer::Server } end end end
Version data entries
25 entries across 25 versions & 4 rubygems