1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/tests/openstack/volume_tests.rb
Paul Thornthwaite 330a351ade Remove trailing blank lines
Done with `rubocop --auto-correct --only TrailingBlankLines`
2014-05-26 14:35:26 +01:00

14 lines
512 B
Ruby

Shindo.tests('Fog::Volume[:openstack]', ['openstack', 'volume']) do
volume = Fog::Volume[:openstack]
tests("Volumes collection") do
%w{ volumes }.each do |collection|
test("it should respond to #{collection}") { volume.respond_to? collection }
test("it should respond to #{collection}.all") { eval("volume.#{collection}").respond_to? 'all' }
# not implemented
#test("it should respond to #{collection}.get") { eval("volume.#{collection}").respond_to? 'get' }
end
end
end