mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
[dremhost|dns] added DNS service tests
This commit is contained in:
parent
87c4afcdd2
commit
b4f05f6893
1 changed files with 20 additions and 0 deletions
20
tests/dreamhost/dns_tests.rb
Normal file
20
tests/dreamhost/dns_tests.rb
Normal file
|
@ -0,0 +1,20 @@
|
|||
Shindo.tests('Fog::DNS[:dreamhost]', ['dreamhost', 'dns']) do
|
||||
|
||||
service = Fog::DNS[:dreamhost]
|
||||
|
||||
tests("collections") do
|
||||
%w{ records }.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
|
||||
|
Loading…
Reference in a new issue