Skip to content
This repository has been archived by the owner on Jun 5, 2020. It is now read-only.

Commit

Permalink
Added simple acceptance tests for security groups
Browse files Browse the repository at this point in the history
* Need to add tests for ingress rules
* Once we merge VPC support we can add VPC security group support
  • Loading branch information
garethr authored and Iristyle committed Nov 3, 2014
1 parent 46ec608 commit f9da252
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions spec/spec_helper_acceptance.rb
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,11 @@ def get_instances(name)
end.flatten
end

def get_groups(name)
response = @client.describe_security_groups(
group_names: [name]
)
response.data.security_groups
end

end

0 comments on commit f9da252

Please sign in to comment.