mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
fc88380f4a
management - Fixed other tests, but tests for address has a problem. - Needs to be revisited.
27 lines
619 B
Ruby
27 lines
619 B
Ruby
module Fog
|
|
module Compute
|
|
class OpenStack
|
|
class Real
|
|
|
|
def associate_address(server_id, ip_address)
|
|
body = { "addFloatingIp" => {"address" => ip_address}}
|
|
server_action(server_id, body)
|
|
end
|
|
|
|
end
|
|
|
|
class Mock
|
|
def associate_address(server_id, ip_address)
|
|
response = Excon::Response.new
|
|
response.status = 202
|
|
response.headers = {
|
|
"Content-Type" => "text/html, charset=UTF-8",
|
|
"Content-Length" => "0",
|
|
"Date"=> Date.new
|
|
}
|
|
response
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|