Sha256: ee9fc0bb6d88f12b14f4e47a0ebc216fad133812dddcfce205dcbf2135081400
Contents?: true
Size: 1.05 KB
Versions: 79
Compression:
Stored size: 1.05 KB
Contents
Shindo.tests('Fog::Compute[:aws] | account tests', ['aws']) do if Fog.mocking? tests('check for vpc') do tests('supports both vpc and ec2 in compatibility mode').succeeds do client = Fog::Compute[:aws] 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.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.disable_ec2_classic data = Fog::Compute[:aws].describe_account_attributes.body !data['accountAttributeSet'].any? { |s| [*s["values"]].include?("VPC") && [*s["values"]].include?("EC2") } end end end end
Version data entries
79 entries across 77 versions & 6 rubygems