1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/tests/ovirt/requests/compute/list_quotas_tests.rb
2013-03-23 21:46:14 -04:00

12 lines
306 B
Ruby

Shindo.tests('Fog::Compute[:ovirt] | quotas request', ['ovirt']) do
compute = Fog::Compute[:ovirt]
tests("When listing all quotas") do
response = compute.quotas
tests("The response data format ...") do
test("it should be a kind of Array") { response.kind_of? Array }
end
end
end