1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/tests/rackspace/models/compute_v2/flavors_tests.rb

17 lines
406 B
Ruby

Shindo.tests('Fog::Compute::RackspaceV2 | flavors', ['rackspace']) do
service = Fog::Compute::RackspaceV2.new
tests("success") do
tests("#all").succeeds do
service.flavors.all
end
tests("#get").succeeds do
service.flavors.get(service.flavors.first.id)
end
end
tests("failure").returns(nil) do
service.flavors.get(Fog::Rackspace::MockData::NOT_FOUND_ID)
end
end