1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/spec/aws/requests/ec2/allocate_address_spec.rb
2009-08-17 15:55:30 -07:00

20 lines
435 B
Ruby

require File.dirname(__FILE__) + '/../../../spec_helper'
describe 'EC2.allocate_address' do
before(:all) do
@ec2 = Fog::AWS::EC2.gen
end
after(:all) do
@ec2.release_address(@public_ip)
end
it "should return proper attributes" do
actual = @ec2.allocate_address
actual.body['requestId'].should be_a(String)
@public_ip = actual.body['publicIp']
actual.body['publicIp'].should be_a(String)
end
end