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/requests/databases/flavor_tests.rb
2012-06-28 23:10:49 -04:00

16 lines
386 B
Ruby

Shindo.tests('Fog::Rackspace::Database | flavor_tests', ['rackspace']) do
pending if Fog.mocking?
service = Fog::Rackspace::Databases.new
tests('success') do
tests('#list_flavors_details').formats(LIST_FLAVORS_FORMAT) do
service.list_flavors().body
end
tests('#get_flavor(1)').formats(GET_FLAVOR_FORMAT) do
service.get_flavor(1).body
end
end
end