From 191465d9c8aac9c19dd0e4429e47b6e7c576f9a6 Mon Sep 17 00:00:00 2001 From: Wesley Beary Date: Tue, 20 Oct 2009 23:50:41 -0700 Subject: [PATCH] pending specs for new association behaviours --- spec/aws/models/ec2/instance_spec.rb | 8 ++++++++ 1 file changed, 8 insertions(+) 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