[dns|zerigo] namespace related fixes

This commit is contained in:
geemus 2011-06-21 14:49:02 -07:00
parent c3f91950f9
commit 4a85a2f136
3 changed files with 3 additions and 3 deletions

View File

@ -25,7 +25,7 @@ module Fog
request(
:expects => 200,
:method => 'GET',
:parser => Fog::Parsers::Zerigo::DNS::GetZoneStats.new,
:parser => Fog::Parsers::DNS::Zerigo::GetZoneStats.new,
:path => "/api/1.1/zones/#{zone_id}/stats.xml"
)
end

View File

@ -29,7 +29,7 @@ module Fog
request(
:expects => 200,
:method => 'GET',
:parser => Fog::Parsers::Zerigo::DNS::ListHosts.new,
:parser => Fog::Parsers::DNS::Zerigo::ListHosts.new,
:path => "/api/1.1/zones/#{zone_id}/hosts.xml"
)
end

View File

@ -34,7 +34,7 @@ module Fog
request(
:expects => 200,
:method => 'GET',
:parser => Fog::Parsers::Zerigo::DNS::ListZones.new,
:parser => Fog::Parsers::DNS::Zerigo::ListZones.new,
:path => '/api/1.1/zones.xml'
)
end