mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
d903af4562
- Fixes regresion probably caused by eb0545b
- Added minimal test to catch the issue
- Fixes #1605
15 lines
513 B
Ruby
15 lines
513 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
|
|
|