From a19941fa76684a6b84ed9fc2a73be0ce4aec02e7 Mon Sep 17 00:00:00 2001 From: Michael Hale Date: Mon, 5 May 2014 11:59:29 -0400 Subject: [PATCH] [aws] update refs to ec2_compatibility_mode --- tests/aws/requests/compute/client_tests.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/aws/requests/compute/client_tests.rb b/tests/aws/requests/compute/client_tests.rb index 919cf2729..6ef2bb275 100644 --- a/tests/aws/requests/compute/client_tests.rb +++ b/tests/aws/requests/compute/client_tests.rb @@ -3,20 +3,20 @@ Shindo.tests('Fog::Compute[:aws] | account tests', ['aws']) do tests('check for vpc') do tests('supports both vpc and ec2 in compatibility mode').succeeds do client = Fog::Compute[:aws] - client.ec2_compatibility_mode(true) + client.enable_ec2_classic data = Fog::Compute[:aws].describe_account_attributes.body data['accountAttributeSet'].any? { |s| [*s["values"]].include?("VPC") && [*s["values"]].include?("EC2") } end tests('supports VPC in vpc mode').succeeds do client = Fog::Compute[:aws] - client.ec2_compatibility_mode(true) + client.enable_ec2_classic data = Fog::Compute[:aws].describe_account_attributes.body data['accountAttributeSet'].any? { |s| [*s["values"]].include?("VPC") } end tests('does not support VPC and EC2 in vpc mode').succeeds do client = Fog::Compute[:aws] - client.ec2_compatibility_mode(false) + client.disable_ec2_classic data = Fog::Compute[:aws].describe_account_attributes.body !data['accountAttributeSet'].any? { |s| [*s["values"]].include?("VPC") && [*s["values"]].include?("EC2") } end