Sha256: fc594e11ea0b43d13a10ef657905e469ec0f7c982df62c526a0d6123a385a485
Contents?: true
Size: 374 Bytes
Versions: 19
Compression:
Stored size: 374 Bytes
Contents
# Testing VBoxManage -v output When /I try to read the virtualbox "(.+?)"/ do |item| @key = item.to_sym @result = VirtualBox.send(item) end Then /the result should match version output/ do data = VBoxManage.execute("-v").split("r") results = { :version => data[0], :revision => data[1], :supported? => !!data } @result.should == results[@key] end
Version data entries
19 entries across 19 versions & 3 rubygems