Sha256: 71e174ebd7616ac1f6f3ca3782c758efa3f210fef623a5d90360bd92d9ee46e4

Contents?: true

Size: 514 Bytes

Versions: 22

Compression:

Stored size: 514 Bytes

Contents

require 'common'

class TestKnownHosts < Test::Unit::TestCase

  def perform_test(hostfile)
    source = File.join(File.dirname(__FILE__), hostfile)
    kh = Net::SSH::KnownHosts.new(source)
    keys = kh.keys_for("github.com")
    assert_equal(1, keys.count)
    assert_equal("ssh-rsa", keys[0].ssh_type)
  end

  def test_key_for_when_all_hosts_are_recognized
    perform_test("known_hosts/github")
  end

  def test_key_for_when_an_host_hash_is_recognized
    perform_test("known_hosts/github_hash")
  end

end

Version data entries

22 entries across 22 versions & 4 rubygems

Version Path
net-ssh-2.10.1.rc1 test/test_known_hosts.rb
net-ssh-2.10.0.beta2 test/test_known_hosts.rb