2009-07-01 13:14:07 -04:00
|
|
|
require File.dirname(__FILE__) + '/../../spec_helper'
|
|
|
|
|
|
|
|
describe 'EC2.describe_addresses' do
|
|
|
|
|
|
|
|
before(:all) do
|
2009-07-02 13:54:41 -04:00
|
|
|
@public_ip = ec2.allocate_address.body[:public_ip]
|
2009-07-01 13:14:07 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
after(:all) do
|
|
|
|
ec2.release_address(@public_ip)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should return proper attributes" do
|
|
|
|
actual = ec2.describe_addresses(@public_ip)
|
2009-07-02 13:54:41 -04:00
|
|
|
actual.body[:request_id].should be_a(String)
|
2009-07-01 13:14:07 -04:00
|
|
|
item = actual.body[:addresses].select {|address| address[:public_ip] == @public_ip}
|
|
|
|
item.should_not be_nil
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|