2009-06-30 12:43:39 -04:00
|
|
|
require File.dirname(__FILE__) + '/../../spec_helper'
|
|
|
|
|
2009-07-01 13:14:07 -04:00
|
|
|
describe 'EC2.allocate_address' do
|
|
|
|
|
2009-08-12 01:18:27 -04:00
|
|
|
before(:all) do
|
|
|
|
@ec2 = Fog::AWS::EC2.gen
|
|
|
|
end
|
|
|
|
|
2009-07-01 13:14:07 -04:00
|
|
|
after(:all) do
|
2009-08-12 01:18:27 -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-12 01:18:27 -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
|