require "#{File.dirname(__FILE__)}/../spec_helper" describe OVIRT::Volume do xml = < disk1 53687091200 53687091200 143360 false false true END_HEREDOC vol = OVIRT::Volume::new(nil, Nokogiri::XML(xml).xpath('/').first) it "volume's bootable should be nil, since it was not specified" do vol.bootable.should eql(nil) end it "volume's interface should be nil, since it was not specified" do vol.interface.should eql(nil) end end