diff --git a/spec/aws/models/ec2/instance_spec.rb b/spec/aws/models/ec2/instance_spec.rb index 40303bce8..f7e1d3bde 100644 --- a/spec/aws/models/ec2/instance_spec.rb +++ b/spec/aws/models/ec2/instance_spec.rb @@ -46,6 +46,10 @@ describe 'Fog::AWS::EC2::Instance' do instance.addresses.should be_a(Fog::AWS::EC2::Addresses) end + it "should not associate the address to a not yet saved instance" + it "should associate the address after saving a new instance" + it "should associate the address to an existing instance" + end describe "#destroy" do @@ -137,6 +141,10 @@ describe 'Fog::AWS::EC2::Instance' do instance.volumes.should be_a(Fog::AWS::EC2::Volumes) end + it "should not attach the volume to a not yet saved instance" + it "should attach the volume after saving a new instance" + it "should attach the volume to an existing instance" + end end