mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
[aws] update refs to ec2_compatibility_mode
This commit is contained in:
parent
4a29552914
commit
a19941fa76
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue