2013-01-21 15:50:05 -05:00
|
|
|
Shindo.tests('Fog::DNS[:dreamhost]', ['dreamhost', 'dns']) do
|
|
|
|
|
|
|
|
service = Fog::DNS[:dreamhost]
|
|
|
|
|
|
|
|
tests("collections") do
|
2013-01-21 17:26:30 -05:00
|
|
|
%w{ records zones }.each do |collection|
|
2013-01-21 15:50:05 -05:00
|
|
|
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
|
2014-05-26 09:44:18 -04:00
|
|
|
|
2013-01-21 15:50:05 -05:00
|
|
|
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
|