2009-08-17 18:55:30 -04:00
|
|
|
require File.dirname(__FILE__) + '/../../../spec_helper'
|
2009-06-30 12:43:39 -04:00
|
|
|
|
2009-07-01 13:14:07 -04:00
|
|
|
describe 'EC2.allocate_address' do
|
|
|
|
|
|
|
|
after(:all) do
|
2009-08-18 01:39:44 -04:00
|
|
|
ec2.release_address(@public_ip)
|
2009-07-01 13:14:07 -04:00
|
|
|
end
|
2009-06-30 12:43:39 -04:00
|
|
|
|
|
|
|
it "should return proper attributes" do
|
2009-08-18 01:39:44 -04:00
|
|
|
actual = ec2.allocate_address
|
2009-08-01 04:15:44 -04:00
|
|
|
actual.body['requestId'].should be_a(String)
|
|
|
|
@public_ip = actual.body['publicIp']
|
|
|
|
actual.body['publicIp'].should be_a(String)
|
2009-06-30 12:43:39 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|