Sha256: ab2909d1319d2de8c0af208b9d33813a13f66580a2a1dd2a000da66de3cf668d
Contents?: true
Size: 485 Bytes
Versions: 26
Compression:
Stored size: 485 Bytes
Contents
require 'rubygems' require 'rest_connection' require 'spec' require 'ruby-debug' describe Ec2SshKeyInternal, "ec2_ssh_key internal api object exercise" do before(:all) do end it "should find an index of all ssh keys" do all_keys = Ec2SshKeyInternal.find(:all) all_keys.empty?.should == false default_key = Ec2SshKeyInternal.find_by(:aws_key_name) {|n| n=~ /default/} default_key.first.should_not == nil default_key.first.href.should_not == nil end end
Version data entries
26 entries across 26 versions & 1 rubygems