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/run_instances_spec.rb

16 lines
343 B
Ruby
Raw Normal View History

2009-07-08 21:58:02 -07:00
require File.dirname(__FILE__) + '/../../spec_helper'
describe 'EC2.run_instances' do
after(:all) do
p ec2.terminate_instances([@instance_id])
end
2009-07-08 21:58:02 -07:00
it "should return proper attributes" do
actual = ec2.run_instances('ami-5ee70037', 1, 1)
@instance_id = actual.body[:instance_set].first[:instance_id]
2009-07-08 21:58:02 -07:00
p actual
end
end