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/ec2/allocate_address_spec.rb

12 lines
243 B
Ruby
Raw Normal View History

2009-06-30 12:43:39 -04:00
require File.dirname(__FILE__) + '/../../spec_helper'
describe 'EC2.batch_put_attributes' do
it "should return proper attributes" do
actual = ec2.allocate_address
actual.body[:public_ip].should be_a(String)
p actual
end
end