1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/tests/dreamhost/dns_tests.rb
Sergio Rubio 9dd24ab2bd [dreamhost|dns] Emulate zone model and collection, added tests
Dreamhost API has no concept of Zone, but we can emulate it.
2013-01-21 23:26:30 +01:00

20 lines
669 B
Ruby

Shindo.tests('Fog::DNS[:dreamhost]', ['dreamhost', 'dns']) do
service = Fog::DNS[:dreamhost]
tests("collections") do
%w{ records zones }.each do |collection|
test("it should respond to #{collection}") { service.respond_to? collection }
test("it should respond to #{collection}.all") { eval("service.#{collection}").respond_to? 'all' }
test("it should respond to #{collection}.get") { eval("service.#{collection}").respond_to? 'get' }
end
end
tests("requests") do
%w{ list_records create_record delete_record }.each do |request|
test("it should respond to #{request}") { service.respond_to? request }
end
end
end