diff options
author | Miklós Fazekas <mfazekas@szemafor.com> | 2016-09-11 07:00:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-11 07:00:00 +0200 |
commit | f4c787ef3770f5218fefcb3c21091de13205ede8 (patch) | |
tree | c7858fe99f28b974182edc1d3ed6f3558767bb8c /test/server_test.rb | |
parent | 66ab0bbc30c784734cfbbad737e68fc675728777 (diff) | |
parent | 21d971a74d674aaa6cfd64454061d957dfccecc7 (diff) | |
download | net-ssh-multi-master.tar.gz |
Fixed host parsing to work with ipv6 addresses
Diffstat (limited to 'test/server_test.rb')
-rw-r--r-- | test/server_test.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/server_test.rb b/test/server_test.rb index 544ea16..ecfa12e 100644 --- a/test/server_test.rb +++ b/test/server_test.rb @@ -14,6 +14,10 @@ class ServerTest < Minitest::Test assert_equal "hello", server('host', :properties => { :foo => "hello" })[:foo] end + def test_ipv6_works_with_given_port_using_bracket_notation + assert_equal 9022, server('[2001:DB8::1234]:9022').port + end + def test_port_should_return_22_by_default assert_equal 22, server('host').port end |